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 <title>CSS 2.1 Test Suite: handling of blocks inside inlines</title>
5 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
6 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level"/>
8 <meta name="flags" content="dom" />
9 <script>
10 function doit() {
11 var newNode = document.createElement("div");
12 newNode.appendChild(document.createTextNode("Eight"));
13 document.getElementById("target").appendChild(newNode);
14 }
15 </script>
16 <style>
17 body > span { border: 3px solid blue }
18 </style>
19 </head>
20 <body onload='doit()'>
21 <span id="target"
22 ><span>One</span
23 ><span>Two</span
24 ><span>Three</span
25 ><div>Four</div
26 ><div>Five</div
27 ><span>Six</span
28 ><div>Seven</div
29 ></span>
30 </body>
31 </html>