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 | <!-- Reference case, using inline-block instead of inline-flex, and with the |
michael@0 | 7 | baseline-aligned items aligned using specific font-size / line-heights, |
michael@0 | 8 | and with unaligned children taken out of baseline-alignment using |
michael@0 | 9 | "vertical-align:top". |
michael@0 | 10 | --> |
michael@0 | 11 | <html> |
michael@0 | 12 | <head> |
michael@0 | 13 | <title>CSS Reftest Reference</title> |
michael@0 | 14 | <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> |
michael@0 | 15 | <meta charset="utf-8"> |
michael@0 | 16 | <style> |
michael@0 | 17 | .flexContainer { |
michael@0 | 18 | display: inline-block; |
michael@0 | 19 | background: lightblue; |
michael@0 | 20 | } |
michael@0 | 21 | .flexContainer > * { display: inline; } |
michael@0 | 22 | .smallFont { |
michael@0 | 23 | font-size: 10px; |
michael@0 | 24 | line-height: 10px; |
michael@0 | 25 | } |
michael@0 | 26 | .bigFont { |
michael@0 | 27 | font-size: 20px; |
michael@0 | 28 | line-height: 20px; |
michael@0 | 29 | } |
michael@0 | 30 | .unaligned { vertical-align: top } |
michael@0 | 31 | </style> |
michael@0 | 32 | </head> |
michael@0 | 33 | <body> |
michael@0 | 34 | a |
michael@0 | 35 | <div class="flexContainer smallFont"> |
michael@0 | 36 | <div class="smallFont">b</div |
michael@0 | 37 | ><div class="bigFont unaligned">c</div> |
michael@0 | 38 | </div> |
michael@0 | 39 | <div class="flexContainer bigFont"> |
michael@0 | 40 | <div class="bigFont">d</div |
michael@0 | 41 | ><div class="smallFont unaligned">e</div> |
michael@0 | 42 | </div> |
michael@0 | 43 | </body> |
michael@0 | 44 | </html> |