Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 665597-1.html
blob4660f7b9084750c5e45a427560785b65cfaef36c
1 <!DOCTYPE HTML>
2 <title>Test that overflowing margins and padding on scrollable element add</title>
3 <style>
4 #scroll {
5 overflow: scroll; background: yellow;
6 height: 100px; width: 100px;
7 padding: 4px 5px 7px 11px;
10 #content {
11 margin-top: 19px;
12 margin-bottom: 35px;
13 height: 200px;
14 background: aqua;
17 </style>
18 <div id="scroll"><div id="content"></div></div>
19 <script>
20 document.getElementById("scroll").scrollTop = "1000";
21 </script>