4 transform: translateZ(
0);
9 testRunner
.dumpAsText();
13 var layersResult
= document
.getElementById('layers');
14 if (window
.testRunner
)
15 layersResult
.innerText
= window
.internals
.layerTreeAsText(document
);
17 window
.addEventListener('load', dumpLayers
, false)
19 <div style=
"transform: translateZ(0); overflow: hidden; height: 10px; background-color: lightblue">
20 <div id=
"inner" style=
"transform: translateZ(0); height: 10px; background-color: whitesmoke">
23 <!-- This div should not sqaush into the inner div, because it is inside an overflow:hidden div which therefore clips differently than this div's parent -->
24 <div class=
"hoverable" style=
"position:absolute; top: 0px; height:100px; width:100px; background-color: lightgreen">
25 <pre id=
"layers">Layer tree goes here in DRT
</pre>