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 <!-- file_CSP.sjs mocks a resource load -->
5 <link rel='stylesheet' type='text/css'
6 href='file_CSP.sjs?testid=noneExternalStylesBlocked&type=text/css' />
7 </head>
8 <body>
9 <p id="inline-style">This should be green</p>
10 <p id="inline-script">This should be black</p>
11 <style>
12 p#inline-style { color:rgb(0, 128, 0); }
13 </style>
14 <script>
15 // Use inline script to set a style attribute
16 document.getElementById("inline-script").style.color = "rgb(0, 128, 0)";
17 </script>
18 <img src="file_CSP.sjs?testid=noneExternalImgLoaded&type=img/png" />
19 </body>
20 </html>