Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/crashtests/regression-1063652-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS.registerProperty with element.animate should not crash</title>
<div id="target"></div>
<script>
CSS.registerProperty({
name: '--c',
syntax: '<number> | initial-value',
initialValue: 'initial-value',
inherits: false,
});
target.animate({
'--c': [, '300'],
}, {
duration: 1,
});
</script>