910e62b5创建于 1月15日历史提交
<!DOCTYPE html>
<style>
html {
    overflow-y: scroll;
}

body {
    margin: 0;
    height: 1000px;
    background-color: yellow;
}
</style>
<body>
    The test passes if the contents scrolls correctly.
</body>
<script>
    window.scrollTo(0, 100);
</script>