layout/reftests/bugs/665597-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <title>Test that overflowing margins and padding on scrollable element add</title>
michael@0 3 <style>
michael@0 4 #scroll {
michael@0 5 overflow: scroll; background: yellow;
michael@0 6 height: 100px; width: 100px;
michael@0 7 padding: 4px 5px 7px 11px;
michael@0 8 }
michael@0 9
michael@0 10 #content {
michael@0 11 margin-top: 19px;
michael@0 12 margin-bottom: 35px;
michael@0 13 height: 200px;
michael@0 14 background: aqua;
michael@0 15 }
michael@0 16
michael@0 17 </style>
michael@0 18 <div id="scroll"><div id="content"></div></div>
michael@0 19 <script>
michael@0 20 document.getElementById("scroll").scrollTop = "1000";
michael@0 21 </script>

mercurial