Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
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 pointer-events: none;
13 }
15 body > div {
16 display: -moz-box;
17 background: yellow;
18 -moz-box-flex: 1;
19 -moz-box-orient: horizontal;
20 }
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>