Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/option-element.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Animating option element should not crash</title>
<object>
<div>
<option id="testA"></option>
</div>
</object>
<video>
<option id="testB"></option>
</video>
<video>
<object>
<option id="testC"></option>
</object>
</video>
<script>
testA.animate([{fontSize: 'large'}, {fontSize: '24px'}], 1000);
testB.animate([{fontSize: '6rem'}, {fontSize: 'x-large'}], 1000);
try {
testC.animate([{outlineColor: 'invert'}, {outlineColor: 'inherit'}], 1000);
} catch (e) {}
</script>