layout/reftests/table-width/cell-pref-width-border-box.html

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 <head>
     4     <title>
     5         Test minimum cell width calculation
     6     </title>
     7     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
     8 </head>
     9 <body>
    10 <style type="text/css">
    11 table
    12 {
    13     vertical-align:top;
    14     empty-cells:show;
    15     border-collapse:collapse;
    16 }
    18 td
    19 {
    20     box-sizing: border-box;
    21     border: solid 1px black;
    22 }
    23 </style>
    24 <table>
    25 	<tr>
    26 		<td>Test wrapping</td>
    27 	</tr>
    28 </table>
    29 </body>
    30 </html>

mercurial