css3-selectors-lang-014

:lang(cs-CZ), lang="cs-Latn-CZ"

WeasyPrint

This browser

Flags
script

Source

 1 <!DOCTYPE html>
 2 <html lang="en"><head>
 3 <meta charset="utf-8">
 4 <title>:lang(cs-CZ), lang="cs-Latn-CZ"</title>
 5 <link href="mailto:ishida@w3.org" rel="author" title="Richard Ishida">
 6 <link href="http://www.w3.org/TR/css3-selectors/#lang-pseudo" rel="help">
 7 <script src="/resources/testharness.js"></script>
 8 <script src="/resources/testharnessreport.js"></script>
 9 <style type="text/css">
10 .test div { width: 50px; }
11  		#colonlangcontroltest { color: red; font-weight: bold; width: 400px; }
12 		#colonlangcontroltest:lang(xx) { display:none; }
13 #box:lang(cs-CZ) { width: 100px; }
14 </style>
15 </head>
16 <body>
17 
18 
19 
20 <div class="test"><div lang="cs-Latn-CZ" id="box">&nbsp;</div></div>
21 <p lang="xx" id="colonlangcontroltest">This test failed because it relies on :lang for results, but :lang is not supported by this browser.
22 
23 
24 <!--Notes:
25 This tests a detail related to :lang support. If :lang is not supported, a message will appear and the test will fail.
26 -->
27 <script>
28 test(function() {
29 assert_equals(document.getElementById('colonlangcontroltest').offsetWidth, 0)
30 assert_equals(document.getElementById('box').offsetWidth, 50);
31 }, "A :lang value with language and region subtags will NOT match a lang attribute value with language, script and region subtags.");
32 </script>
33 
34 </p><div id="log"></div>
35 
36 
37 
38 </body></html>