blob: 268668b90376a76e741bc88c210c11b652c88a39 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.fixed-no-z-index {
position: absolute;
left: 10px;
}
.fixed-with-z-index {
position: fixed;
z-index: 1;
left: 10px;
}
</style>
<script>
if (window.internals) {
window.internals.settings.setAcceleratedCompositingForFixedPositionEnabled(true);
window.internals.setPageScaleFactor(2, 0, 0);
}
if (window.testRunner)
testRunner.dumpAsText(true);
</script>
</head>
<body style="width:2000px;height:2000px;">
<div class="fixed-no-z-index">TEST</div><br>
<div class="fixed-with-z-index">TEST</div>
</body>
</html>