editor/txmgr/tests/crashtests/449006-1.html

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

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>

mercurial