gecko-dev/layout/reftests/transform-3d/transform-geometry-1.html
Miko Mynttinen cae25aa175 Bug 1335159 - Also invert layer local transform r=mattwoodrow
MozReview-Commit-ID: EmYesCp433Q

--HG--
extra : rebase_source : 7c8fe59b84c86c79eb07da11938156b2785af65b
2017-01-31 22:26:46 +01:00

46 lines
710 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
#parent {
width: 400px;
height: 400px;
transform-style: preserve-3d;
}
#child {
width: 400px;
height: 400px;
overflow: scroll;
}
.box {
width: 400px;
height: 300px;
background-color: red;
}
</style>
</head>
<body>
<div id="parent">
<div id="child">
<div class="box"></div>
<div class="box"></div>
</div>
</div>
<script>
function doTest() {
document.documentElement.removeAttribute("class");
document.getElementById("child").scrollTop = 200;
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>