Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / visibility / compositing-and-visibility-turned-off-together.html
blob7bffb5fc582b6edb5d456731dfa315035a1c871b
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
8 function dotest()
10 document.getElementById('theelement').style.setProperty('visibility','hidden','');
11 document.getElementById('theelement').style.removeProperty('-webkit-perspective');
13 // force layout
14 document.body.offsetTop;
16 if (window.testRunner)
17 testRunner.notifyDone();
19 </script>
20 </head>
21 <body onload="setTimeout(dotest,0)">
22 <p>This test verifies no assertion failure is raised when visibility and need for compositing are turned off at same time.</p>
24 <div id="theelement" class="abstop" style="position: absolute; -webkit-perspective: 1">This line should be invisible</div>
25 </body>
26 </html>