blob: a4b3789661329d75245eb88d981edb462c7b0bda [file] [edit]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/ui-helper.js"></script>
<style>
body {
height: 1200px;
}
.box {
width: 100px;
height: 100px;
margin: 50px;
background-color: blue;
border: 2px solid black;
}
#box {
background-image: linear-gradient(to top, white, black);
background-attachment: fixed;
background-repeat: no-repeat;
}
</style>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
async function doTest()
{
await UIHelper.renderingUpdate();
if (window.internals)
document.getElementById('reasons').textContent = window.internals.synchronousScrollingReasons();
if (window.testRunner)
testRunner.notifyDone();
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div id="box" class="box"></div>
<p>Should be slow scrolling because of slow repaint objects.</p>
<pre id="reasons"></pre>
</body>
</html>