gecko-dev/layout/reftests/display-list/1417601-1.html
Miko Mynttinen 3b508a2e1b Bug 1417601 - Override dirty rect for OOF frames with containing block outside a modified stacking context r=mattwoodrow
MozReview-Commit-ID: DqvdDECU7dM

--HG--
extra : rebase_source : 3abb1741d8fec40249a4450ed3e867691c490f95
extra : intermediate-source : 0ac00e0c1d107480da7c387ac6969f4eafd96475
extra : source : e88d129b7a6d372adddb781b8e6384f70c08c380
2017-11-16 16:09:16 +01:00

33 lines
818 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<style>
#modified {
left: 0px;
}
</style>
<script type="text/javascript">
function doTest() {
document.getElementById("modified").style.left = "10px";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<div style="opacity:0.9">
<div style="position:fixed; left:300px; top:300px; width:200px; height:200px; background-color:red; z-index:-10"></div>
<div style="width:200px; height:200px; position:relative; background-color:green" id="modified">
<div style="opacity:0.9">
<div style="position:fixed; left:300px; top:300px; width:200px; height:200px; background-color:green; z-index:-10"></div>
</div>
</div>
</div>
</body>
</html>