Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-119.xml
bloba5781b9f6d23eb20b5d9b9ae173da0afaa2cfd37
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>NEGATED type element selector with universal namespace</title>
4   <style type="text/css"><![CDATA[@namespace html url(http://www.w3.org/1999/xhtml);
5 @namespace a url(http://www.example.org/a);
6 @namespace b url(http://www.example.org/b);
7 div.test *:not(*|div) { display : block ; margin-bottom : 1em ;
8                             background-color : red }
9 div.test > *:not(*|p):not(*|div) { background-color : lime }
10 div.stub > *:not(*|div) { background-color : lime }
11 ]]></style>
12   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
13   <link rel="prev" href="css3-modsel-118.xml" title="NEGATED type element selector with declared namespace"/>
14   <link rel="next" href="css3-modsel-120.xml" title="NEGATED type element selector without declared namespace"/>
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="test">
21 <div class="stub">
22 <p>This paragraph should have a green background.</p>
23 <p xmlns="http://www.example.org/b">This paragraph should have a green background.</p>
24 <p xmlns="">This paragraph should have a green background.</p>
25 <p xmlns="http://www.example.org/a">This paragraph should have a green background.</p>
26 </div>
27 <address>This address should have a green background.</address>
28 <s xmlns="http://www.example.org/b">This paragraph should have a green background.</s>
29 <t xmlns="">This paragraph should have a green background.</t>
30 <u xmlns="http://www.example.org/a">This paragraph should have a green background.</u>
31 </div>
32 </body>
33 </html>