Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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;
8 }
10 #content {
11 margin-top: 19px;
12 margin-bottom: 35px;
13 height: 200px;
14 background: aqua;
15 }
17 </style>
18 <div id="scroll"><div id="content"></div></div>
19 <script>
20 document.getElementById("scroll").scrollTop = "1000";
21 </script>