Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / namespaces / namespaces-empty.xml
blob6dd4925ba9390f012475540521e863fbfb6b9bd6
1 <root>
2  <head xmlns="http://www.w3.org/1999/xhtml">
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/#prefixes"/>
6   <title>CSS Namespaces Test Suite: empty string default namespace</title>
7   <style>
8    @namespace "";
9    @namespace x "test";
10    *|t, *|root { display:block }
11    *|t, t[x] { background:lime }
12    t { background:red }
13   </style>
14  </head>
15  <t x="">This sentence should have a green background.</t>
16  <t xmlns="test">This sentence should have a green background.</t>
17 </root>