Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / namespaces / 001.xml
blobb4127a6abac4a41b30c7a02023b00df97c75889d
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <title>CSS: 1 simple test of namespaces (attributes)</title>
4   <style type="text/css">
5     @namespace html url(http://www.w3.org/1999/xhtml);
6     @namespace test url(http://www.example.org/);
7     html|body { color: red; }
8     [test] { color: green; }
9   </style>
10  </head>
11  <body>
12   <test test="test" xmlns="http://www.example.org/">
13     This should be green.
14   </test>
15  </body>
16 </html>