-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathcss3-modsel-22.xml
More file actions
36 lines (36 loc) · 1.57 KB
/
Copy pathcss3-modsel-22.xml
File metadata and controls
36 lines (36 loc) · 1.57 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
<!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>:lang() pseudo-class</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="common.js"></script>
<style type="text/css"><![CDATA[ul > li { background-color : red }
li:lang(en-GB) { background-color : lime }]]></style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
</head>
<body>
<ul>
<li lang="en-GB" id="t1">This list item should be green because its language is
British English</li>
<li lang="en-GB-wa" id="t2">This list item should be green because its language
is British English (Wales)</li>
</ul>
<ol>
<li lang="en-US" id="t3">This list item should NOT be green because its language
is US English</li>
<li lang="fr" id="t4">This list item should NOT be green because its language is
French</li>
</ol>
<script><![CDATA[
test(function() {
assert_background_color('t1', LIME, 'lang=en-GB should be green');
assert_background_color('t2', LIME, 'lang=en-GB-wa should be green');
assert_not_background_color('t3', LIME, 'lang=en-US should not be green');
assert_not_background_color('t4', LIME, 'lang=fr should not be green');
}, 'li:lang(en-GB) matches');
]]></script>
</body>
</html>