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 <script type="text/javascript">
5 function boom()
6 {
7 document.getElementById("d").focus();
8 document.execCommand("inserthtml", false, "AB");
9 document.execCommand("delete", false, null);
10 document.execCommand("undo", false, null);
12 document.addEventListener("DOMCharacterDataModified", f, false);
13 document.execCommand("redo", false, null);
14 document.removeEventListener("DOMCharacterDataModified", f, false);
16 function f()
17 {
18 document.removeEventListener("DOMCharacterDataModified", f, false);
19 document.execCommand("formatBlock", false, "<h3>");
20 }
21 }
23 </script>
24 </head>
26 <body onload="boom();"><div id="d" contenteditable="true"></div></body>
28 </html>