Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-cascade/layer-media-toggle.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Cascade Layers: Tests against a Chrome bug that modifying a sheet affects existing layers</title>
<link rel="author" href="mailto:xiaochengh@chromium.org">
<link rel="match" href="reference/ref-filled-green-100px-square.xht">
<style>
@layer foo, bar;
@layer bar {
#target { background-color: green; }
}
@layer foo {
#target { background-color: red; }
}
</style>
<style media="print" id="toggle">
#target {
width: 100px;
height: 100px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="target"></div>
<script>
document.body.offsetWidth; // Force style calculation
document.getElementById('toggle').media = 'all';
</script>