blob: 7eb04112de018834f9d701ea0fec25e12b02bf2d [file] [log] [blame]
<!DOCTYPE html>
<head>
<style>
.composited {
will-change: transform;
}
.box {
width: 100px;
height: 100px;
}
.behind {
position: absolute;
z-index: 1;
top: 100px;
left: 100px;
background-color: blue;
}
.middle {
position: absolute;
z-index: 1;
top: 40px;
left: 40px;
background-color: lime;
}
.middle2 {
position: absolute;
z-index: 1;
top: 130px;
left: 60px;
background-color: magenta;
}
.top {
position: absolute;
z-index: 1;
top: 70px;
left: 120px;
background-color: cyan;
}
div:hover {
background-color: green;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function runTest()
{
if (!window.internals) {
alert('This test requires window.internals')
return;
}
document.body.textContent = internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_INVALIDATIONS);
document.body.style.whiteSpace = 'pre';
}
</script>
</head>
<body onload="runTest()">
<div class="composited box behind"></div>
<div class="box middle"></div>
<div class="box middle2"></div>
<div class="box top"></div>
</body>