blob: 4660f7b9084750c5e45a427560785b65cfaef36c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!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>
|