Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
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 | div.flexbox { |
michael@0 | 12 | height: 200px; |
michael@0 | 13 | width: 22px; |
michael@0 | 14 | float: left; |
michael@0 | 15 | margin-right: 10px; |
michael@0 | 16 | background: lightgreen; |
michael@0 | 17 | line-height: 0; |
michael@0 | 18 | } |
michael@0 | 19 | textarea { |
michael@0 | 20 | width: 20px; |
michael@0 | 21 | height: 10px; |
michael@0 | 22 | background: white; |
michael@0 | 23 | border-radius: 0; |
michael@0 | 24 | border: 1px dotted green; |
michael@0 | 25 | margin: 0; |
michael@0 | 26 | padding: 0; |
michael@0 | 27 | } |
michael@0 | 28 | </style> |
michael@0 | 29 | </head> |
michael@0 | 30 | <body> |
michael@0 | 31 | <div class="flexbox"> |
michael@0 | 32 | <textarea/> |
michael@0 | 33 | </div> |
michael@0 | 34 | |
michael@0 | 35 | <div class="flexbox"> |
michael@0 | 36 | <div style="font: 8px monospace; height: 188px"> |
michael@0 | 37 | a b |
michael@0 | 38 | </div> |
michael@0 | 39 | <textarea/> |
michael@0 | 40 | </div> |
michael@0 | 41 | |
michael@0 | 42 | <div class="flexbox"> |
michael@0 | 43 | <textarea style="height: 122.5px" |
michael@0 | 44 | /><textarea style="height: 73.5px"/> |
michael@0 | 45 | </div> |
michael@0 | 46 | |
michael@0 | 47 | <div class="flexbox"> |
michael@0 | 48 | <textarea style="height: 93px" |
michael@0 | 49 | /><textarea style="height: 103px"/> |
michael@0 | 50 | </div> |
michael@0 | 51 | |
michael@0 | 52 | <div class="flexbox"> |
michael@0 | 53 | <textarea style="height: 114px" |
michael@0 | 54 | /><textarea style="height: 82px"/> |
michael@0 | 55 | </div> |
michael@0 | 56 | |
michael@0 | 57 | <div class="flexbox"> |
michael@0 | 58 | <textarea style="height: 106px" |
michael@0 | 59 | /><textarea style="height: 90px"/> |
michael@0 | 60 | </div> |
michael@0 | 61 | |
michael@0 | 62 | <div class="flexbox"> |
michael@0 | 63 | <textarea style="height: 46px" |
michael@0 | 64 | /><textarea style="height: 150px"/> |
michael@0 | 65 | </div> |
michael@0 | 66 | |
michael@0 | 67 | </body> |
michael@0 | 68 | </html> |