Thu, 15 Jan 2015 21:13:52 +0100
Remove forgotten relic of ABI crash risk averse overloaded method change.
michael@0 | 1 | <!-- Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ --> |
michael@0 | 3 | <!-- This testcase has a -moz-box element with a block as its only child, which |
michael@0 | 4 | forms a containing block for an absolutely positioned grandchild. Also, in |
michael@0 | 5 | this case, the grandchild is taller than its parent and grandparent. --> |
michael@0 | 6 | <html> |
michael@0 | 7 | <head> |
michael@0 | 8 | <style> |
michael@0 | 9 | body { margin-top: 50px } |
michael@0 | 10 | .box { display: -moz-box } |
michael@0 | 11 | .relpos_parent { |
michael@0 | 12 | position: relative; |
michael@0 | 13 | width: 100px; |
michael@0 | 14 | height: 100px; |
michael@0 | 15 | background: lightblue; |
michael@0 | 16 | } |
michael@0 | 17 | .abspos_child { |
michael@0 | 18 | position: absolute; |
michael@0 | 19 | left: 30px; |
michael@0 | 20 | bottom: 10px; |
michael@0 | 21 | width: 20px; |
michael@0 | 22 | height: 130px; |
michael@0 | 23 | background: purple; |
michael@0 | 24 | } |
michael@0 | 25 | </style> |
michael@0 | 26 | </head> |
michael@0 | 27 | <body> |
michael@0 | 28 | <div class="box"> |
michael@0 | 29 | <div class="relpos_parent"> |
michael@0 | 30 | <div class="abspos_child"></div> |
michael@0 | 31 | </div> |
michael@0 | 32 | </div> |
michael@0 | 33 | </body> |
michael@0 | 34 | </html> |