Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / namespaces / namespaces-invalid-prefix.xhtml
blob65246f0679a6d73a516551ff933559a62675b75d
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <style>
3 abc|div {
4 background-color: red;
7 [abc|id] {
8 background-color: green;
10 </style>
11 <div id="target"></div>
13 <script src="../../../resources/testharness.js"></script>
14 <script src="../../../resources/testharnessreport.js"></script>
16 <script>
17 test(function(){
18 assert_equals(document.styleSheets[0].cssRules.length, 0);
19 }, "Style rules with namespace prefixes not declared before, should be ignored");
20 </script>
22 </html>