gecko-dev/layout/reftests/display-list/retained-dl-style-change-stacking-context-1.html
Matt Woodrow 8a8cc8c9a7 Bug 1453668 - Restrict the retained display list stacking context optimization to frames that are also containing blocks for position:fixed. r=miko
MozReview-Commit-ID: GP4uMpR2Lq0

--HG--
extra : rebase_source : 6142080157be59e189dbd0e8cc56a42375afb2f0
2018-04-16 14:23:47 +12:00

30 lines
654 B
HTML

<html class="reftest-wait">
<head>
<style>
body {
margin: 0px;
}
div {
width:100px;
height:100px;
display: inline-block;
position:absolute;
}
</style>
</head>
<body>
<div id="first" style="background-color:green; width:200px; height:200px" class="reftest-no-display-list"></div>
<div style="transform:translateZ(1px)">
<div id="second" style="background-color:red"></div>
</div>
</body>
<script>
function doTest() {
document.getElementById("second").style.backgroundColor = "green";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</html>