Thu, 15 Jan 2015 21:13:52 +0100
Remove forgotten relic of ABI crash risk averse overloaded method change.
michael@0 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
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 xmlns="http://www.w3.org/1999/xhtml"> |
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 | .container { |
michael@0 | 12 | width: 40px; |
michael@0 | 13 | height: 14px; |
michael@0 | 14 | border: 2px solid green; |
michael@0 | 15 | margin-bottom: 2px; |
michael@0 | 16 | } |
michael@0 | 17 | .a { |
michael@0 | 18 | width: 16px; |
michael@0 | 19 | height: 10px; |
michael@0 | 20 | background: blue; |
michael@0 | 21 | min-width: 0; |
michael@0 | 22 | border: 2px solid lightblue; |
michael@0 | 23 | } |
michael@0 | 24 | .b { |
michael@0 | 25 | width: 16px; |
michael@0 | 26 | height: 10px; |
michael@0 | 27 | background: purple; |
michael@0 | 28 | min-width: 0; |
michael@0 | 29 | border: 2px solid slateblue; |
michael@0 | 30 | } |
michael@0 | 31 | .aKid { |
michael@0 | 32 | margin-left: 10px; |
michael@0 | 33 | margin-top: 2px; |
michael@0 | 34 | width: 16px; |
michael@0 | 35 | height: 6px; |
michael@0 | 36 | background: yellow; |
michael@0 | 37 | border: 1px solid black; |
michael@0 | 38 | } |
michael@0 | 39 | .a, .b { float: left; } |
michael@0 | 40 | </style> |
michael@0 | 41 | </head> |
michael@0 | 42 | <body> |
michael@0 | 43 | <!-- Just 6 copies of the same container, since they all should look the |
michael@0 | 44 | same (except for the final "position: fixed" one, which needs to be |
michael@0 | 45 | explicitly marked as "position: fixed" or else it paints differently |
michael@0 | 46 | on Android.) --> |
michael@0 | 47 | <div class="container"> |
michael@0 | 48 | <div class="a"><div class="aKid"/></div> |
michael@0 | 49 | <div class="b"></div> |
michael@0 | 50 | </div> |
michael@0 | 51 | |
michael@0 | 52 | <div class="container"> |
michael@0 | 53 | <div class="a"><div class="aKid"/></div> |
michael@0 | 54 | <div class="b"></div> |
michael@0 | 55 | </div> |
michael@0 | 56 | |
michael@0 | 57 | <div class="container"> |
michael@0 | 58 | <div class="a"><div class="aKid"/></div> |
michael@0 | 59 | <div class="b"></div> |
michael@0 | 60 | </div> |
michael@0 | 61 | |
michael@0 | 62 | <div class="container"> |
michael@0 | 63 | <div class="a"><div class="aKid"/></div> |
michael@0 | 64 | <div class="b"></div> |
michael@0 | 65 | </div> |
michael@0 | 66 | |
michael@0 | 67 | <div class="container"> |
michael@0 | 68 | <div class="a"><div class="aKid"/></div> |
michael@0 | 69 | <div class="b"></div> |
michael@0 | 70 | </div> |
michael@0 | 71 | |
michael@0 | 72 | <div class="container" style="position: fixed"> |
michael@0 | 73 | <div class="a"><div class="aKid"/></div> |
michael@0 | 74 | <div class="b"></div> |
michael@0 | 75 | </div> |
michael@0 | 76 | |
michael@0 | 77 | </body> |
michael@0 | 78 | </html> |