Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-nesting/nested-media-in-layer.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Nested @media in @layer with CSS Nesting</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@layer x { .a { @media all { @media all { color: red } } } }
</style>
<div id="div" class="a"></div>
<script>
"use strict";
test(() => {
const div = document.getElementById("div");
const styles = window.getComputedStyle(div);
assert_equals(styles.color, "rgb(255, 0, 0)");
}, "Nested @media in @layer with CSS Nesting parses correctly");
</script>