<!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="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 -->
 </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>
