Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / contents-opaque / hidden-with-visible-text.html
blobfc9f8dfbdfadabe2265741af97151dabffda00cf
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #caption {
6 width: 200px;
7 height: 100px;
8 background-color: green;
9 transform: translateZ(0);
11 .inner {
12 visibility: visible;
13 background-color: blue;
15 </style>
16 <script type="text/javascript">
17 if (window.testRunner)
18 testRunner.dumpAsText();
20 function doTest() {
21 document.getElementById("caption").style.visibility = "hidden";
22 if (window.testRunner && window.internals)
23 document.getElementById('layertree').innerText = window.internals.layerTreeAsText(document);
25 window.addEventListener('load', doTest, false);
26 </script>
27 </head>
28 <body>
29 <div id="caption" style="position: fixed; background: green;">Caption</div>
30 <pre id="layertree"></pre>
31 </body>
32 </html>