Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-95.xml
blobcc448d9f4a676824b05de68c7c8f79a5f10550ec
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>Universal selector with universal 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 div.test * { background-color : red ; display : block ; margin-bottom : 1em }
7 div.test *|* { background-color : lime }]]></style>
8   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
9   <link rel="prev" href="css3-modsel-94b.xml" title="Universal selector with declared namespace"/>
10   <link rel="next" href="css3-modsel-96.xml" title="Universal selector without 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  <div class="test">
17   <p>This line should  have a green background</p>
18   <p xmlns="http://www.example.org/b">This line should have a green background</p>
19   <q xmlns="http://www.example.org/b">This line should have a green background</q>
20   <p xmlns="http://www.example.org/a">This line should have a green background</p>
21   <foo xmlns="http://www.example.org/b">This line should have a green background</foo>
22  </div>
23 </body>
24 </html>