Update CSS tests to revision b9c63d615a65c4d96f26969bcd504d4e1c3cdab8

This commit is contained in:
Ms2ger 2016-04-22 10:06:45 +02:00
parent 0e0e902edd
commit 4d13f9f5d5
641 changed files with 24127 additions and 11370 deletions

View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en" lang="en">
<head>
<title>Selectors Level 4: :first-of-type</title>
<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
<style type="text/css">
div > *|* {
display: block;
color: black;
border: thin solid;
margin: 1em;
}
.yellow {
background: yellow;
}
.green {
background: lime;
}
</style>
</head>
<body>
<div>
<p class="green">This line should have a green background.</p>
<p class="yellow">This line should have a yellow background.</p>
<p class="yellow">This line should have a yellow background.</p>
<p class="green">This line should have a green background.</p>
<p class="green">This line should have a green background.</p>
</div>
</body>
</html>