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/implicit-nesting-ident.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Nesting: Implicit nesting (ident)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#main {
div {
color: green;
}
}
</style>
<div id=main>
<div id=target>
Green
</div>
</main>
<script>
test(() => {
assert_equals(getComputedStyle(target).color, 'rgb(0, 128, 0)');
}, 'Nested rule starting with tag');
</script>