665597-1.html (444B)
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 } 9 10 #content { 11 margin-top: 19px; 12 margin-bottom: 35px; 13 height: 200px; 14 background: aqua; 15 } 16 17 </style> 18 <div id="scroll"><div id="content"></div></div> 19 <script> 20 document.getElementById("scroll").scrollTop = "1000"; 21 </script>