mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
22 lines
444 B
HTML
22 lines
444 B
HTML
<!DOCTYPE HTML>
|
|
<title>Test that overflowing margins and padding on scrollable element add</title>
|
|
<style>
|
|
#scroll {
|
|
overflow: scroll; background: yellow;
|
|
height: 100px; width: 100px;
|
|
padding: 4px 5px 7px 11px;
|
|
}
|
|
|
|
#content {
|
|
margin-top: 19px;
|
|
margin-bottom: 35px;
|
|
height: 200px;
|
|
background: aqua;
|
|
}
|
|
|
|
</style>
|
|
<div id="scroll"><div id="content"></div></div>
|
|
<script>
|
|
document.getElementById("scroll").scrollTop = "1000";
|
|
</script>
|