Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / namespaces / empty-namespace-compound-selector-2.xhtml
blob160c67256f664e2ad0f92a7bb271da59c1944a5d
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <style>
3 *|div {
4 display: block;
5 width: 100px;
6 height: 100px;
7 background-color: green;
10 |div#target {
11 background-color: red;
13 </style>
14 <div id="target"></div>
16 <script src="../../../resources/testharness.js"></script>
17 <script src="../../../resources/testharnessreport.js"></script>
19 <script>
20 test(function(){
21 assert_equals(getComputedStyle(document.getElementById('target')).backgroundColor, 'rgb(0, 128, 0)');
22 }, "Empty namespaces should work correctly on compound selectors");
23 </script>
25 </html>