gecko-dev/layout/reftests/display-list/1428993-1.html
Miko Mynttinen c6350c2dd1 Bug 1428993 - Part 2: Override dirty rect for stacking contexts between OOF frame placeholder and the containing block r=mattwoodrow
MozReview-Commit-ID: FoX9uyoiqj4

--HG--
extra : rebase_source : 64baafadcb35509e08f8db30b2153eb16c41c369
2018-01-12 18:02:14 +01:00

58 lines
994 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Retained display list test</title>
<style type="text/css">
.box {
left: 0px;
top: 0px;
width: 400px;
height: 400px;
}
button {
position: fixed;
outline: none;
background-color: green;
border: none;
}
.red {
position: absolute;
background-color: red;
}
.translate {
transform: translateX(0px);
}
.container {
position: absolute;
top: 0px;
left: 0px;
z-index: 1;
}
</style>
</head>
<body>
<div class="container">
<div class="box red"></div>
<button class="box" id="green"></button>
</div>
<script type="text/javascript">
function doTest() {
document.getElementById("green").classList.add("translate");
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
// setTimeout(doTest, 5000);
</script>
</body>
</html>