blob: a4d12b29bdf8c24e85bfb51fabb67352c6473873 [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;
-webkit-transform:translateZ(0);
}
</style>
<script>
if (window.internals) {
window.internals.settings.setAcceleratedCompositingForFixedPositionEnabled(true);
window.internals.setPageScaleFactor(2, 0, 0);
}
function test() {
window.scrollTo(100,100);
if (window.testRunner)
testRunner.dumpAsText();
}
</script>
</head>
<body onload="test();" style="width:2000px;height:2000px;">
<div class="fixed-no-z-index">This test should not hit an assertion in RenderGeometryMap in debug builds</div><br>
<div class="fixed-with-z-index">This test should not hit an assertion in RenderGeometryMap in debug builds</div>
</body>
</html>