Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / selectors3 / xhtml / css3-modsel-121.xml
blobbac03ab3ca85fb37f7a5b7043b2a7513f404131b
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>NEGATED universal selector with declared 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.stub > *|* { color : red ; display : block ;
8                  margin-bottom : 1em }
9 div.stub > *|*:not(a|*) { color : green  }
10 div.stub v { color : green }
11 ]]></style>
12   <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
13   <link rel="prev" href="css3-modsel-120.xml" title="NEGATED type element selector without declared namespace"/>
14   <link rel="next" href="css3-modsel-122.xml" title="NEGATED universal selector with universal 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="stub">
21 <address>This address should be in green characters.</address>
22 <s xmlns="http://www.example.org/b">This paragraph should be in green characters.</s>
23 <t xmlns="">This paragraph should be in green characters.</t>
24 <u xmlns="http://www.example.org/a">
25 <v>This paragraph should be in green characters.</v>
26 </u>
27 </div>
29 </body>
30 </html>