-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathcss3-modsel-76b.xml
More file actions
46 lines (46 loc) · 2.28 KB
/
Copy pathcss3-modsel-76b.xml
File metadata and controls
46 lines (46 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>NEGATED :nth-last-of-type() pseudo-class</title>
<style type="text/css"><![CDATA[.green { background-color : lime ! important }
p:not(:nth-last-of-type(3)) { background-color : red }
dl > *:not(:nth-last-of-type(3n+1)) { background-color : red }
]]></style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="common.js"></script>
</head>
<body>
<p id="u1">This paragraph should be unstyled.</p>
<address id="u2">This address should be unstyled.</address>
<p class="green" id="t1">This paragraph should have green background.</p>
<p class="green" id="t2">This paragraph should have green background.</p>
<dl>
<dt class="green" id="t3">First definition term that should have green background.</dt>
<dd class="green" id="t4">First definition that should also have a green background.</dd>
<dt class="green" id="t5">Second definition term that should have green background.</dt>
<dd class="green" id="t6">Second definition that should have green background.</dd>
<dt id="u3">Third definition term.</dt>
<dd id="u4">Third definition.</dd>
<dt class="green" id="t7">Fourth definition term that should have green background.</dt>
<dd class="green" id="t8">Fourth definition that should have green background.</dd>
<dt class="green" id="t9">Fifth definition term that should have green background.</dt>
<dd class="green" id="t10">Fifth definition that should have green background.</dd>
<dt id="u5">Sixth definition term.</dt>
<dd id="u6">Sixth definition.</dd>
</dl>
<script><![CDATA[
test(() => {
for (let i = 1; i < 10; ++i) {
assert_background_color(`t${i}`, LIME, `t${i} should be green`);
}
for (let i = 1; i < 6; ++i) {
assert_not_background_color(`u${i}`, LIME, `u${i} should be unstyled`);
}
}, 'NEGATED :nth-last-of-type() pseudo-class')
]]></script>
</body>
</html>