Files
rust_browser/tests/goldens/fixtures/050-descendant-deep.html
Zachary D. Rowitsch 2bf8ce6de8 Phase 3: Initial commit
2026-01-31 16:20:53 -05:00

25 lines
393 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
/* Descendant selector should match at all depths */
div span {
background-color: green;
}
</style>
</head>
<body>
<div class="level1">
<div class="level2">
<div class="level3">
<div class="level4">
<div class="level5">
<span>Deep nested span</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>