Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/cssom/change-rule-with-layers-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSSOM Test: Chrome crash when modifying rules with @layer</title>
<link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
<style id="s">
.x {
transition: color 0.5s;
@layer warning {
:first-child { }
:last-child { }
}
}
</style>
<p>Test passes if it does not crash.</p>
<script>
document.body.offsetTop;
s.sheet.cssRules[0].style.transitionDuration = '1s';
</script>