Tue, 06 Jan 2015 21:39:09 +0100
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 <html>
2 <head>
3 <title>Test that cellpadding, cellspacing, border, etc., don't break table sizing.</title>
4 <style type="text/css">
6 html, body { margin: 0 } /* no collapsing */
8 table, td {
9 border: none;
10 margin: 0;
11 padding: 0;
12 border-spacing: 0;
13 }
15 body > table { margin: 28px 29px 34px 35px; }
16 body { background: white; color: black; }
18 div { background: olive; color: black; }
20 </style>
21 </head>
22 <body>
23 <table width="1"><tr><td>
24 <table><tr><td>
25 <div>This is some text.</div>
26 </td></tr></table>
27 </td></tr></table>
28 </body>
29 </html>