layout/reftests/box/flexbox-attributes-no-input-horizontal-ref.xhtml

branch
TOR_BUG_9701
changeset 8
97036ab72558
equal deleted inserted replaced
-1:000000000000 0:658beea5b018
1 <!DOCTYPE HTML>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>Test that XUL attributes are not supported on non-XUL elements</title>
5 <style type="text/css">
6 <![CDATA[
7
8 html, body {
9 display: -moz-box;
10 margin: 0; padding: 0;
11 width: 100%; height: 100%;
12 pointer-events: none;
13 }
14
15 body > div {
16 display: -moz-box;
17 background: yellow;
18 -moz-box-flex: 1;
19 -moz-box-orient: horizontal;
20 }
21
22 ]]>
23 </style>
24 </head>
25 <body>
26 <div>
27 <input type="text" value="2" />
28 <input type="text" value="1" />
29 <input type="text" value="width" />
30 <input type="text" value="height" />
31 <input type="text" value="minwidth" />
32 <input type="text" value="minheight" />
33 <input type="text" value="maxwidth" />
34 <input type="text" value="maxheight" />
35 <input type="text" value="flex" />
36 </div>
37 </body>
38 </html>

mercurial