mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
355 B
HTML
17 lines
355 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>scrollTo test</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<script>
|
|
function run() {
|
|
window.scrollTo(0,1);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="run()" style="height:2000px">
|
|
<h1>scrollTo test</h1>
|
|
<p>The urlbar should scroll out of view after this page loads.</p>
|
|
</body>
|
|
</html>
|