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
8html, body {
9  display: -moz-box;
10  margin: 0; padding: 0;
11  width: 100%; height: 100%;
12  pointer-events: none;
13}
14
15body > 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="width" />
28  <input type="text" value="height" />
29  <input type="text" value="minwidth" />
30  <input type="text" value="minheight" />
31  <input type="text" value="maxwidth" />
32  <input type="text" value="maxheight" />
33  <input type="text" value="flex" />
34</div>
35</body>
36</html>
37