Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / namespaces / namespaces-invalid-at.xml
blob8c2d37fa46f6b12c55aa03d135944c6d60ec7253
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <link rel="author" title="Anne van Kesteren" href="http://annevankesteren.nl/"/>
4   <link rel="author" title="Opera Software ASA" href="http://opera.com/"/>
5   <link rel="help" href="http://www.w3.org/TR/css3-namespace/#syntax"/>
6   <meta name="flags" content="invalid"/>
7   <title>CSS Namespaces Test Suite: @namespace and invalid at-rules</title>
8   <style>
9    t, t2, t3 { background:red }
10   </style>
11   <style>
12    @import x {}
13    @namespace x "test";
14    x|t { background:lime }
15   </style>
16   <style>
17    @namespace x "test-top";
18    foobar this is funny { not:sure }
19    @namespace foo {}
20    @namespace foo bar baz;
21    @namespace {}
22    @namespace "test";
23    @foobar this is funnier;
24    t2 { background:lime }
25    x|t3 { background:lime }
26    </style>
27  </head>
28  <body>
29   <p><t xmlns="test">This sentence should have a green background.</t></p>
30   <p><t2 xmlns="test">This sentence should have a green background.</t2></p>
31   <p><t3 xmlns="test-top">This sentence should have a green background.</t3></p>
32  </body>
33 </html>