22 lines
866 B
HTML
22 lines
866 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel="help" href="https://crbug.com/364669904">
|
|
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
|
|
<script src="/common/reftest-wait.js"></script>
|
|
<script src="/common/rendering-utils.js"></script>
|
|
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
|
|
<div id="scroller" style="position: relative; overflow: scroll; scrollbar-width: none;
|
|
width: 200px; height: 200px; display: none">
|
|
<div style="height: 2000px"></div>
|
|
<div style="position: absolute; top: 1000px;
|
|
width: 100px; height: 100px; background: green"></div>
|
|
</div>
|
|
<script>
|
|
waitForAtLeastOneFrame().then(() => {
|
|
scroller.style.display = 'block';
|
|
waitForAtLeastOneFrame().then(() => {
|
|
scroller.scrollTo(0, 1000);
|
|
takeScreenshot();
|
|
});
|
|
});
|
|
</script>
|