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

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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

mercurial