layout/reftests/table-width/spanning-cell-sort-2-large-fixed.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>
     2 <title>Testcase to exercise nsSpanningCellSorter</title>
     3 <style type="text/css">
     5 table, td {
     6 	border-spacing: 0;
     7 	padding: 0; margin: 0; border: none;
     8 	empty-cells: show;
     9 }
    11 td { height: 20px; }
    13 </style>
    15 <table style="width: 600px">
    16   <tr>
    17     <td style="background-color: blue" colspan="20"><div style="width: 200px"></div></td>
    18     <td style="background-color: fuchsia" colspan="10"></td>
    19     <td style="background-color: maroon" colspan="10"></td>
    20   </tr>
    21   <tr>
    22     <td style="background-color: yellow" colspan="10"></td>
    23     <td style="background-color: aqua" colspan="30"><div style="width: 300px"></div></td>
    24   </tr>
    25 </table>

mercurial