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.
michael@0 | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" |
michael@0 | 2 | "http://www.w3.org/TR/REC-html40/strict.dtd"> |
michael@0 | 3 | <HEAD> |
michael@0 | 4 | <SCRIPT src=tableDom.js> |
michael@0 | 5 | </SCRIPT> |
michael@0 | 6 | <SCRIPT> |
michael@0 | 7 | |
michael@0 | 8 | function doIt() { |
michael@0 | 9 | appendCellAt(1, 1, 0); |
michael@0 | 10 | |
michael@0 | 11 | appendCellAt(2, 0, 1); |
michael@0 | 12 | } |
michael@0 | 13 | </SCRIPT> |
michael@0 | 14 | </HEAD> |
michael@0 | 15 | <BODY onload="doIt()"> |
michael@0 | 16 | |
michael@0 | 17 | <table bgcolor=orange border> |
michael@0 | 18 | <tr> |
michael@0 | 19 | <td>c11</td><td>c12</td><td>c13</td><td>c14</td> |
michael@0 | 20 | </tr> |
michael@0 | 21 | <tr><td>c21</td></tr> |
michael@0 | 22 | </table> |
michael@0 | 23 | <table bgcolor=orange border> |
michael@0 | 24 | <tr><td>c11</td> </tr> |
michael@0 | 25 | <tr><td>c21</td> </tr> |
michael@0 | 26 | <tr><td>c22</td> </tr> |
michael@0 | 27 | <tr><td>c23</td> </tr> |
michael@0 | 28 | <tr><td>c24</td> </tr> |
michael@0 | 29 | |
michael@0 | 30 | </table> |
michael@0 | 31 | </BODY></HTML> |
michael@0 | 32 | |
michael@0 | 33 | |
michael@0 | 34 | |
michael@0 | 35 | |
michael@0 | 36 | |
michael@0 | 37 |