blob: 954d33c5cd678fcb52cfd3bd8dcfe5f55f5889c4 [file] [log] [blame]
<html>
<head>
<style>
body {
direction: rtl;
margin: 0px;
background-color: red;
}
.positioned {
position: fixed;
top: 50px;
left: 50px;
width: 100px;
height: 100px;
}
.indicator {
background-color: red;
}
.layer {
will-change:transform;
background-color: green;
}
#root {
width: 1000px;
height: 1000px;
background-color: white;
}
#layertree {
position: absolute;
top: 10000px;
left: 0px;
}
</style>
<script>
function doTest() {
if (window.testRunner && window.internals) {
if (top == self)
testRunner.setCustomTextOutput(internals.layerTreeAsText(document));
testRunner.dumpAsTextWithPixelResults();
}
}
window.addEventListener('load', doTest, false);
</script>
<body>
<div id="root"></div>
<div class="positioned indicator"></div>
<div class="positioned layer"></div>
</body>
</html>