mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
13 lines
233 B
HTML
13 lines
233 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="include.js"></script>
|
||
|
|
<style>
|
||
|
|
div { height: 200vh; }
|
||
|
|
</style>
|
||
|
|
<div></div>
|
||
|
|
<script>
|
||
|
|
window.scrollTo(0, 200);
|
||
|
|
test(() => {
|
||
|
|
println(`Scroll position: ${window.scrollY}px`);
|
||
|
|
});
|
||
|
|
</script>
|