fune/layout/reftests/async-scrolling/overscroll-ref.html
Sawyer Bergeron cca020a971 Bug 1697712 - Allow going into overscroll using the test async scroll offset r=tnikkel
Also add a reftest which uses this to test overscroll rendering.

Differential Revision: https://phabricator.services.mozilla.com/D102115
2021-03-20 02:20:42 +00:00

24 lines
322 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
html {
scrollbar-width: none;
}
body {
height: 3000px;
margin: 0;
}
div {
position: absolute;
top: 8px;
width: 200px;
height: 200px;
background: green;
}
</style>
</head>
<body>
<div></div>
</body>
</html>