1
0
Fork 0
firefox/testing/web-platform/tests/css/selectors/nth-child-and-nth-last-child-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

56 lines
No EOL
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
target {
background-color: red;
}
#success1, #success2, #success3 {
background-color: green;
}
</style>
</head>
<body>
<p>Test the matching of an element only if it is the only child matching the selector list. If the test succeed, every instance of the text "Success" should be on green background.</p>
<div>
<div></div>
<target>Foo</target>
<div></div>
<target>Bar</target>
<div></div>
</div>
<div>
<div></div>
<div></div>
<target id="success1">Success</target>
<div></div>
</div>
<div>
<div></div>
<target>Foo</target>
<div></div>
<target>Bar</target>
<div></div>
</div>
<div>
<div></div>
<div></div>
<target id="success2">Success</target>
<div></div>
</div>
<div>
<div></div>
<target>Foo</target>
<div></div>
<target>Bar</target>
<div></div>
</div>
<div>
<div></div>
<div></div>
<target id="success3">Success</target>
<div></div>
</div>
</body>
</html>