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 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 body {
6 background: white;
7 color: black;
8 font-size: 24px;
9 }
10 div {
11 background: white;
12 color: blue;
13 text-shadow: red 2px 2px 0px;
14 }
15 span {
16 background: yellow;
17 color: white;
18 }
19 </style>
20 </head>
21 <body>
22 <div>
23 hello <span>selected</span> world
24 </div>
25 </body>
26 </html>