Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-94b.xml
bloba53f07db52c991d525ff2138a41238e3d326ad7f
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>Universal selector with declared namespace</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 p, q { display : block ; margin-bottom : 1em }
7 b|* { background-color : red }
8 [test] { background-color: lime; }]]></style>
9   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
10   <link rel="prev" href="css3-modsel-94.xml" title="Universal selector with declared namespace"/>
11   <link rel="next" href="css3-modsel-95.xml" title="Universal selector with universal namespace"/>
12   <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
13   <link rel="up" href="./index.html"/>
14   <link rel="top" href="../../index.html"/>
15  </head>
16  <body>
17 <p>This line should be unstyled.</p>
18 <p xmlns="http://www.example.org/b" test="test">This line should have a green background.</p>
19 <q xmlns="http://www.example.org/b" test="test">This line should have a green background.</q>
20 <p xmlns="http://www.example.org/a">This line should be unstyled.</p>
21 <p xmlns="http://www.example.org/b" test="test">This line should have a green background.</p>
22 </body>
23 </html>