blob: 2d594788a6936f328484e5d08872c7e1847798e2 [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
div {
background-color: white;
}
div:nth-child(odd) {
background-color: lime;
}
</style>
</head>
<body>
<section>
<p><!-- To avoid styling the description. --></p>
<p>This tests basic style sharing with :nth-child(odd). If the test pass, lines with the text "green" should have a green background.</p>
<div>Green</div>
<div>White</div>
<div>Green</div>
<div>White</div>
<div>Green</div>
<div>
<div>Green</div>
<div>White</div>
<div>Green</div>
</div>
<div>
<div>Green</div>
<div>White</div>
<div>Green</div>
<div>White</div>
<div>Green</div>
</div>
</section>
<section>
<div>Green</div>
<div>White</div>
<div>Green</div>
<div>
<div>Green</div>
<div>White</div>
<div>Green</div>
<div>White</div>
<div>Green</div>
<div>White</div>
</div>
</section>
</body>
</html>