blob: 0a99bf8dae34c1839702787367ea39b6fbf175ee [file] [log] [blame]
<!doctype html>
<title>Changing width of scrollbar propagated from body to viewport</title>
<style>
body { overflow: scroll }
body::-webkit-scrollbar {
background: red;
width: 200px;
height: 200px;
}
.narrow::-webkit-scrollbar {
width: 0px;
height: 0px;
}
</style>
<body>
<script>
document.body.offsetTop;
document.body.className = "narrow";
</script>