layout/reftests/box/flexbox-attributes-no-input-vertical-ref.xhtml

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

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

mercurial