mirror of
https://github.com/servo/servo.git
synced 2025-08-18 03:45:33 +01:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
74
tests/ref/nth_child_pseudo_b.html
Normal file
74
tests/ref/nth_child_pseudo_b.html
Normal file
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>:nth-child test</title>
|
||||
<style type="text/css">
|
||||
|
||||
div > p { float: left; width: 40px; height: 40px; margin-right: 10px; border: 1px solid black; }
|
||||
div { clear: both; }
|
||||
|
||||
.odd, .even, .nth, .nth2, .negativen { background: green; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="odd">
|
||||
<p class="odd"> </p>
|
||||
<p> </p>
|
||||
<p class="odd"> </p>
|
||||
<p> </p>
|
||||
<p class="odd"> </p>
|
||||
<p> </p>
|
||||
<p class="odd"> </p>
|
||||
<p> </p>
|
||||
</div>
|
||||
<div id="even">
|
||||
<p> </p>
|
||||
<p class="even"> </p>
|
||||
<p> </p>
|
||||
<p class="even"> </p>
|
||||
<p> </p>
|
||||
<p class="even"> </p>
|
||||
<p> </p>
|
||||
<p class="even"> </p>
|
||||
</div>
|
||||
<div id="nth">
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p class="nth"> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p class="nth"> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p class="nth"> </p>
|
||||
</div>
|
||||
<div id="nth2">
|
||||
<p class="nth2"> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p class="nth2"> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p class="nth2"> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p class="nth2"> </p>
|
||||
<p> </p>
|
||||
</div>
|
||||
<div id="negativen">
|
||||
<p class="negativen"> </p>
|
||||
<p> </p>
|
||||
<p class="negativen"> </p>
|
||||
<p> </p>
|
||||
<p class="negativen"> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
<p> </p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue