blob: f277464f40f435e7f513ca9fe3bed1f53e2d3bb5 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<style>
body { overflow: hidden; }
#space { height: 2000px; }
</style>
<div id="space"></div>
<script>
async_test(t => {
onscroll = t.step_func_done(() => {
assert_true(scrollY > 0);
});
scroll({behavior: "smooth", top: 500});
}, 'scroll');
</script>