blob: 542743f4d232844d5f5e4a4fc7878d450b6f57d1 [file] [log] [blame]
<!doctype html>
<html>
<style>
.container {
position: relative;
z-index: 0;
top: 123px; /* easy to detect values */
left: 123px; /* easy to detect values */
}
#child {
width: 100px;
height: 100px;
background-color: gray;
will-change: transform;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<body>
<!-- This test passes if there's no ASSERT in debug mode. There should be a gray rectangle on screen. -->
<div class="container">
<div id="child"></div>
</div>
</body>
</html>