Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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 height: 200px;
13 width: 22px;
14 float: left;
15 margin-right: 10px;
16 background: lightgreen;
17 line-height: 0;
18 }
19 textarea {
20 width: 20px;
21 height: 10px;
22 background: white;
23 border-radius: 0;
24 border: 1px dotted green;
25 margin: 0;
26 padding: 0;
27 }
28 </style>
29 </head>
30 <body>
31 <div class="flexbox">
32 <textarea/>
33 </div>
35 <div class="flexbox">
36 <div style="font: 8px monospace; height: 188px">
37 a b
38 </div>
39 <textarea/>
40 </div>
42 <div class="flexbox">
43 <textarea style="height: 122.5px"
44 /><textarea style="height: 73.5px"/>
45 </div>
47 <div class="flexbox">
48 <textarea style="height: 93px"
49 /><textarea style="height: 103px"/>
50 </div>
52 <div class="flexbox">
53 <textarea style="height: 114px"
54 /><textarea style="height: 82px"/>
55 </div>
57 <div class="flexbox">
58 <textarea style="height: 106px"
59 /><textarea style="height: 90px"/>
60 </div>
62 <div class="flexbox">
63 <textarea style="height: 46px"
64 /><textarea style="height: 150px"/>
65 </div>
67 </body>
68 </html>