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

Thu, 15 Jan 2015 21:13:52 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:13:52 +0100
branch
TOR_BUG_9701
changeset 12
7540298fafa1
permissions
-rw-r--r--

Remove forgotten relic of ABI crash risk averse overloaded method change.

     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 div > div {
    22   display: -moz-box;
    23   -moz-box-flex: 1;
    24   border: 1px solid blue;
    25 }
    27 ]]>
    28 </style>
    29 </head>
    30 <body>
    31 <div>
    32   <div>2</div>
    33   <div>1</div>
    34   <div>width</div>
    35   <div>height</div>
    36   <div>minwidth</div>
    37   <div>minheight</div>
    38   <div>maxwidth</div>
    39   <div>maxheight</div>
    40   <div>flex</div>
    41 </div>
    42 </body>
    43 </html>

mercurial