Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script src="/web-animations/testcommon.js"></script>
<script src="/common/reftest-wait.js"></script>
<style>
html {
overflow: hidden;
}
.spacer {
height: 300vh;
}
.box {
position: fixed;
left: 0;
top: 0;
width: 100px;
height: 100px;
background: black;
border: solid red;
translate: 100px;
will-change: transform;
}
</style>
</head>
<body>
<div class="box"></div>
<div class='spacer'></div>
</body>
<script>
waitForCompositorReady().then(takeScreenshot);
</script>
</html>