flexbox-attributes-no-input-vertical-ref.xhtml 784 B

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