tenfourfox/layout/reftests/bugs/665597-1-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
459 B
HTML

<!DOCTYPE HTML>
<title>Test that overflowing margins and padding on scrollable element add</title>
<style>
#scroll {
overflow: scroll; background: yellow;
height: 111px; width: 116px;
}
#content {
height: 223px;
margin-right: 5px;
margin-left: 11px;
background: aqua;
}
#gap {
height: 35px;
}
</style>
<div id="scroll"><div id="content"></div><div id="gap"></div></div>
<script>
document.getElementById("scroll").scrollTop = "1000";
</script>