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/keyframes-rename-after-remove-rule.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Renaming @keyframes rule after removeRule should not crash</title>
<style>
@keyframes foo {
0% { foo: bar; }
}
</style>
<script>
window.addEventListener('load', function() {
var e = document.styleSheets[0].cssRules[0];
e.cssRules.item(0).parentStyleSheet.deleteRule(0);
e.name = 'bar';
});
</script>