layout/reftests/w3c-css/submitted/values3/calc-width-table-auto-1.html

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     1 <!DOCTYPE HTML>
     2 <html>
     3 <head>
     4   <title>CSS Test: width: calc() on table-layout: auto tables</title>
     5   <link rel="author" title="L. David Baron" href="http://dbaron.org/">
     6   <link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
     7   <meta name="flags" content="">
     8 <table border>
     9   <tr>
    10     <td style="width: calc(500px)">x</td>
    11     <td style="width: 100px">y</td>
    12 </table>
    13 <table border>
    14   <tr>
    15     <td style="width: calc(50%)">x</td>
    16     <td style="width: 100px">y</td>
    17 </table>
    18 <table border>
    19   <tr>
    20     <td style="width: calc(2 * 10% + 0.5 * 500px)">x</td>
    21     <td style="width: 100px">y</td>
    22 </table>
    23 </body>
    24 </html>

mercurial