Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-96.xml
blob69d62cb1170b1c83427db928577d5bc083299a8c
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>Universal selector without 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 div.green * { background-color : red }
7 div.test * { display : block ; margin-bottom : 1em }
8 div.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-95.xml" title="Universal selector with universal namespace"/>
11   <link rel="next" href="css3-modsel-96b.xml" title="Universal selector without declared 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 <div class="test">
18  <p>This line should be unstyled.</p>
19  <elementA xmlns="http://www.example.org/a">This line should be unstyled.</elementA>
20  <elementB xmlns="http://www.example.org/b">This line should be unstyled.</elementB>
21  <div class="green">
22   <p xmlns="">This line should have a green background</p>
23   <elementA xmlns="">This line should have a green background</elementA>
24   <elementB xmlns="">This line should have a green background</elementB>
25  </div>
26 </div>
27 </body>
28 </html>