blob: 11237e715771a7fcb3c396a611d3cc608a9bf4d2 [file] [log] [blame]
<html>
<head>
<style>
body {
direction: rtl;
margin: 0px;
background-color: red;
}
.positioned {
position: absolute;
top: 50px;
left: 50px;
width: 100px;
height: 100px;
}
.indicator {
background-color: red;
}
.layer {
will-change: transform;
background-color: green;
}
#root {
width: 100%;
height: 100%;
/* root element should exactly cover red background */
background-color: white;
}
</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>