Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / selectors / empty-element-made-non-empty.html
blob2d20fdb64f59bbe9c8c2316bc0fb385872f2e280
1 <!DOCTYPE html>
2 <head>
3 <style>
4 p { background-color: green; width: 100px; height: 100px; }
5 p:empty { display: none; }
6 </style>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
10 window.onload = function() {
11 document.getElementById('id').appendChild(document.createTextNode('TEST PASSED'));
13 </script>
14 </head>
15 <body>
16 <p id="id"></p>
17 </body>