flexbox-attributes-no-input-horizontal-ref.xhtml 810 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. html, body {
  8. display: -moz-box;
  9. margin: 0; padding: 0;
  10. width: 100%; height: 100%;
  11. pointer-events: none;
  12. }
  13. body > div {
  14. display: -moz-box;
  15. background: yellow;
  16. -moz-box-flex: 1;
  17. -moz-box-orient: horizontal;
  18. }
  19. ]]>
  20. </style>
  21. </head>
  22. <body>
  23. <div>
  24. <input type="text" value="2" />
  25. <input type="text" value="1" />
  26. <input type="text" value="width" />
  27. <input type="text" value="height" />
  28. <input type="text" value="minwidth" />
  29. <input type="text" value="minheight" />
  30. <input type="text" value="maxwidth" />
  31. <input type="text" value="maxheight" />
  32. <input type="text" value="flex" />
  33. </div>
  34. </body>
  35. </html>