Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-53.xml
blob991efda57431286a2fd7083cbd14423f6ef4549a
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>NEGATED attribute dash-separated value selector</title>
4   <style type="text/css"><![CDATA[@namespace a url(http://www.example.org/a);
5 @namespace b url(http://www.example.org/b);
6 div.stub p { color : red }
7 div.stub > a|*, div.stub > b|* { color : red ; display : block ; margin-bottom : 1em }
8 div.stub *|*:not([test|="foo-bar"]) { color : lime }
9 div.stub *|p:not([lang|="en-us"]) { color : lime }
10 div.stub b|*[test|="foo2-bar"] { color : lime }
11 ]]></style>
12   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
13   <link rel="prev" href="css3-modsel-52.xml" title="NEGATED attribute space-separated value selector"/>
14   <link rel="next" href="css3-modsel-54.xml" title="NEGATED substring matching attribute selector on beginning"/>
15   <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
16   <link rel="up" href="./index.html"/>
17   <link rel="top" href="../../index.html"/>
18  </head>
19  <body>
20 <div class="stub">
21 <q xmlns="http://www.example.org/a" test="foo-bar">
22   <r test="foo-bartut">This text should be</r>
23   <r>in green characters</r>
24 </q>
25 <s xmlns="http://www.example.org/a" test="bar tut">This text should be in green characters</s>
26 <t xmlns="http://www.example.org/a">This text should be in green characters</t>
27 <p class="en-uk">This text should be in green characters</p>
28 <u xmlns="http://www.example.org/b" test="foo2-bar-lol">This text should be in green characters</u>
29 </div>
30 </body>
31 </html>