Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-94.xml
blob8837ccd6547595e40064e515f3aff150441f5ec5
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 : lime }]]></style>
8   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
9   <link rel="prev" href="css3-modsel-93.xml" title="Type element selector without declared namespace"/>
10   <link rel="next" href="css3-modsel-94b.xml" title="Universal selector with declared namespace"/>
11   <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
12   <link rel="up" href="./index.html"/>
13   <link rel="top" href="../../index.html"/>
14  </head>
15  <body>
16 <p>This line should be unstyled.</p>
17 <p xmlns="http://www.example.org/b">This line should have a green background.</p>
18 <q xmlns="http://www.example.org/b">This line should have a green background.</q>
19 <p xmlns="http://www.example.org/a">This line should be unstyleed.</p>
20 <p xmlns="http://www.example.org/b">This line should have a green background.</p>
21 </body>
22 </html>