layout/reftests/w3c-css/submitted/flexbox/flexbox-basic-textarea-horiz-1-ref.xhtml

branch
TOR_BUG_9701
changeset 11
deefc01c0e14
equal deleted inserted replaced
-1:000000000000 0:025773ec6e77
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html xmlns="http://www.w3.org/1999/xhtml">
7 <head>
8 <title>CSS Reftest Reference</title>
9 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
10 <style>
11 div.flexbox {
12 width: 200px;
13 background: lightgreen;
14 margin-bottom: 5px;
15 line-height: 8px;
16 }
17 textarea {
18 width: 10px;
19 height: 20px;
20 background: white;
21 border-radius: 0;
22 border: 1px dotted green;
23 padding: 0;
24 }
25 </style>
26 </head>
27 <body>
28 <div class="flexbox">
29 <textarea/>
30 </div>
31
32 <div class="flexbox" style="height: 24px">
33 some words
34 <textarea style="float:right"/>
35 </div>
36
37 <div class="flexbox">
38 <textarea style="width: 122.5px"
39 /><textarea style="width: 73.5px"/>
40 </div>
41
42 <div class="flexbox">
43 <textarea style="width: 93px"
44 /><textarea style="width: 103px"/>
45 </div>
46
47 <div class="flexbox">
48 <textarea style="width: 114px"
49 /><textarea style="width: 82px"/>
50 </div>
51
52 <div class="flexbox">
53 <textarea style="width: 106px"
54 /><textarea style="width: 90px"/>
55 </div>
56
57 <div class="flexbox">
58 <textarea style="width: 46px"
59 /><textarea style="width: 150px"/>
60 </div>
61
62 </body>
63 </html>

mercurial