|
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 } |
|
13 |
|
14 body > div { |
|
15 display: -moz-box; |
|
16 background: yellow; |
|
17 -moz-box-flex: 1; |
|
18 -moz-box-orient: vertical; |
|
19 } |
|
20 |
|
21 ]]> |
|
22 </style> |
|
23 </head> |
|
24 <body> |
|
25 <div> |
|
26 <input type="text" ordinal="2" value="2" /> |
|
27 <input type="text" ordinal="1" value="1" /> |
|
28 <input type="text" width="100" value="width" /> |
|
29 <input type="text" height="100" value="height" /> |
|
30 <input type="text" minwidth="100" value="minwidth" /> |
|
31 <input type="text" minheight="100" value="minheight" /> |
|
32 <input type="text" maxwidth="50" value="maxwidth" /> |
|
33 <input type="text" maxheight="5" value="maxheight" /> |
|
34 <input type="text" flex="100" value="flex" /> |
|
35 </div> |
|
36 </body> |
|
37 </html> |