Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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 | <!-- Reference case for behavior of the 'baseline' value for align-items and |
michael@0 | 7 | align-self. |
michael@0 | 8 | --> |
michael@0 | 9 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 10 | <head> |
michael@0 | 11 | <style> |
michael@0 | 12 | .flexbox { |
michael@0 | 13 | display: block; |
michael@0 | 14 | border: 1px dashed blue; |
michael@0 | 15 | font: 14px sans-serif; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | input { height: 30px; } |
michael@0 | 19 | |
michael@0 | 20 | textarea { |
michael@0 | 21 | width: 30px; |
michael@0 | 22 | height: 50px; |
michael@0 | 23 | } |
michael@0 | 24 | |
michael@0 | 25 | div.multilinebutton { |
michael@0 | 26 | /* For comparison vs. "button.multilinebutton" in the testcase: */ |
michael@0 | 27 | -moz-appearance: button; |
michael@0 | 28 | display: block; |
michael@0 | 29 | text-align: center; |
michael@0 | 30 | font: 20px sans-serif; |
michael@0 | 31 | padding-top: 1px; |
michael@0 | 32 | height: 49px; |
michael@0 | 33 | width: 20px; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | div { display: inline-block; } |
michael@0 | 37 | table { display: inline-table; } |
michael@0 | 38 | |
michael@0 | 39 | .lime { background: lime; } |
michael@0 | 40 | </style> |
michael@0 | 41 | </head> |
michael@0 | 42 | <body> |
michael@0 | 43 | <div class="flexbox"> |
michael@0 | 44 | <div class="lime">text</div |
michael@0 | 45 | ><input type="text" style="width: 20px; min-width: 0;" value="input" |
michael@0 | 46 | /><textarea style="width: 30px">t e x t a r e a </textarea |
michael@0 | 47 | ><table cellspacing="0" cellpadding="0"> |
michael@0 | 48 | <div class="multilinebutton">b<br/>t<br/>n</div> |
michael@0 | 49 | </table> |
michael@0 | 50 | </div> |
michael@0 | 51 | </body> |
michael@0 | 52 | </html> |