layout/reftests/box-properties/width-special-values-block-intrinsic.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html lang="en-US">
     3 <head>
     4   <title>intrinsic widths for -moz-max-content, -moz-min-content, -moz-fit-content, and -moz-available values of CSS width property, on blocks</title>
     5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     6   <meta http-equiv="Content-Style-Type" content="text/css">
     7 </head>
     8 <body>
    10 <table border><tr><td>
    11   <div style="width: -moz-max-content">AA B</div>
    12 </td></tr></table>
    14 <table border width="1"><tr><td>
    15   <div style="width: -moz-max-content">AA B</div>
    16 </td></tr></table>
    18 <table border><tr><td>
    19   <div style="width: -moz-min-content">AA B</div>
    20 </td></tr></table>
    22 <table border width="1"><tr><td>
    23   <div style="width: -moz-min-content">AA B</div>
    24 </td></tr></table>
    26 <table border><tr><td>
    27   <div style="width: -moz-fit-content">AA B</div>
    28 </td></tr></table>
    30 <table border width="1"><tr><td>
    31   <div style="width: -moz-fit-content">AA B</div>
    32 </td></tr></table>
    34 <table border><tr><td>
    35   <div style="width: -moz-available">AA B</div>
    36 </td></tr></table>
    38 <table border width="1"><tr><td>
    39   <div style="width: -moz-available">AA B</div>
    40 </td></tr></table>
    42 </body>
    43 </html>

mercurial