Thu, 15 Jan 2015 21:13:52 +0100
Remove forgotten relic of ABI crash risk averse overloaded method change.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <!-- |
michael@0 | 3 | Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 5 | --> |
michael@0 | 6 | <html> |
michael@0 | 7 | <head> |
michael@0 | 8 | <title>CSS Reftest Reference</title> |
michael@0 | 9 | <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> |
michael@0 | 10 | <style> |
michael@0 | 11 | .flexContainer { |
michael@0 | 12 | background: orange; |
michael@0 | 13 | width: 70px; |
michael@0 | 14 | height: 20px; |
michael@0 | 15 | padding: 2px; |
michael@0 | 16 | margin-bottom: 2px; |
michael@0 | 17 | } |
michael@0 | 18 | .item1 { |
michael@0 | 19 | display: inline-block; |
michael@0 | 20 | background: lightblue; |
michael@0 | 21 | width: 30px; |
michael@0 | 22 | height: 16px; |
michael@0 | 23 | padding: 2px; |
michael@0 | 24 | margin-right: 2px; |
michael@0 | 25 | vertical-align: top; |
michael@0 | 26 | } |
michael@0 | 27 | .item2 { |
michael@0 | 28 | display: inline-block; |
michael@0 | 29 | background: yellow; |
michael@0 | 30 | width: 30px; |
michael@0 | 31 | height: 16px; |
michael@0 | 32 | padding: 2px; |
michael@0 | 33 | vertical-align: top; |
michael@0 | 34 | } |
michael@0 | 35 | .grandchildA { |
michael@0 | 36 | background: purple; |
michael@0 | 37 | width: 80px; |
michael@0 | 38 | height: 6px; |
michael@0 | 39 | position: relative; |
michael@0 | 40 | z-index: 10; |
michael@0 | 41 | } |
michael@0 | 42 | .grandchildB { |
michael@0 | 43 | background: teal; |
michael@0 | 44 | width: 80px; |
michael@0 | 45 | height: 6px; |
michael@0 | 46 | position: relative; |
michael@0 | 47 | z-index: 20; |
michael@0 | 48 | } |
michael@0 | 49 | .grandchildC { |
michael@0 | 50 | background: lime; |
michael@0 | 51 | width: 20px; |
michael@0 | 52 | height: 16px; |
michael@0 | 53 | position: relative; |
michael@0 | 54 | /* This z-index should interleave this content |
michael@0 | 55 | between grandchildA and grandchildB: */ |
michael@0 | 56 | z-index: 15; |
michael@0 | 57 | } |
michael@0 | 58 | </style> |
michael@0 | 59 | </head> |
michael@0 | 60 | <body> |
michael@0 | 61 | <div class="flexContainer" |
michael@0 | 62 | ><div class="item1" |
michael@0 | 63 | ><div class="grandchildA"></div |
michael@0 | 64 | ><div class="grandchildB"></div |
michael@0 | 65 | ></div |
michael@0 | 66 | ><div class="item2" |
michael@0 | 67 | ><div class="grandchildC"></div |
michael@0 | 68 | ></div |
michael@0 | 69 | ></div> |
michael@0 | 70 | </body> |
michael@0 | 71 | </html> |