blob: a1edd5d2a56a41d7f1fd1d5162a3441db3ae730c [file] [edit]
<style>
::-webkit-scrollbar {
background: fixed url();
visibility: collapse;
}
</style>
<script>
window.testRunner?.dumpAsText();
function main()
{
document.documentElement.appendChild(document.createElement('ul'));
window.scrollBy(10, 2)
}
</script>
<body onload="main()">
This test passes if it doesn't crash.
</body>