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 | body { font: 10px sans-serif } |
michael@0 | 12 | .flexContainer { |
michael@0 | 13 | background: orange; |
michael@0 | 14 | width: 70px; |
michael@0 | 15 | padding: 2px; |
michael@0 | 16 | margin-bottom: 2px; |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | .flexContainer > div:first-child { |
michael@0 | 20 | margin-right: 10px; /* the space between the flex items, in testcase */ |
michael@0 | 21 | } |
michael@0 | 22 | |
michael@0 | 23 | .item1 { |
michael@0 | 24 | display: inline-block; |
michael@0 | 25 | background: lightblue; |
michael@0 | 26 | width: 30px; |
michael@0 | 27 | } |
michael@0 | 28 | .item2 { |
michael@0 | 29 | display: inline-block; |
michael@0 | 30 | background: yellow; |
michael@0 | 31 | width: 30px; |
michael@0 | 32 | } |
michael@0 | 33 | </style> |
michael@0 | 34 | </head> |
michael@0 | 35 | <body> |
michael@0 | 36 | <div class="flexContainer" |
michael@0 | 37 | ><div class="item1">ThisIsALongUnbrokenString</div |
michael@0 | 38 | ><div class="item2">HereIsSomeMoreLongText</div |
michael@0 | 39 | ></div> |
michael@0 | 40 | |
michael@0 | 41 | <div class="flexContainer" |
michael@0 | 42 | ><div class="item1" style="position:relative">ThisIsALongUnbrokenString</div |
michael@0 | 43 | ><div class="item2">HereIsSomeMoreLongText</div |
michael@0 | 44 | ></div> |
michael@0 | 45 | |
michael@0 | 46 | <div class="flexContainer" |
michael@0 | 47 | ><div class="item1" style="position:relative">ThisIsALongUnbrokenString</div |
michael@0 | 48 | ><div class="item2">HereIsSomeMoreLongText</div |
michael@0 | 49 | ></div> |
michael@0 | 50 | |
michael@0 | 51 | <div class="flexContainer" |
michael@0 | 52 | ><div class="item2">HereIsSomeMoreLongText</div |
michael@0 | 53 | ><div class="item1">ThisIsALongUnbrokenString</div |
michael@0 | 54 | ></div> |
michael@0 | 55 | |
michael@0 | 56 | <div class="flexContainer" |
michael@0 | 57 | ><div class="item2">HereIsSomeMoreLongText</div |
michael@0 | 58 | ><div class="item1">ThisIsALongUnbrokenString</div |
michael@0 | 59 | ></div> |
michael@0 | 60 | |
michael@0 | 61 | <div class="flexContainer" |
michael@0 | 62 | ><div class="item2" style="position:relative">HereIsSomeMoreLongText</div |
michael@0 | 63 | ><div class="item1">ThisIsALongUnbrokenString</div |
michael@0 | 64 | ></div> |
michael@0 | 65 | </body> |
michael@0 | 66 | </html> |