Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/CSSRuleList-appendRule-keyframe-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSSOM Test: Servo crash when modifying keyframe rules </title>
<style>
@keyframes keyframes0 {}
</style>
<script>
onload = _ =>
document.styleSheets[0].cssRules[0].appendRule("0% {}");
</script>