Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
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[
8 html, body {
9 display: -moz-box;
10 margin: 0; padding: 0;
11 width: 100%; height: 100%;
12 }
14 body > div {
15 display: -moz-box;
16 background: yellow;
17 -moz-box-flex: 1;
18 -moz-box-orient: vertical;
19 }
21 div > div {
22 display: -moz-box;
23 -moz-box-flex: 1;
24 border: 1px solid blue;
25 }
27 ]]>
28 </style>
29 </head>
30 <body>
31 <div>
32 <div>2</div>
33 <div>1</div>
34 <div>width</div>
35 <div>height</div>
36 <div>minwidth</div>
37 <div>minheight</div>
38 <div>maxwidth</div>
39 <div>maxheight</div>
40 <div>flex</div>
41 </div>
42 </body>
43 </html>