editor/reftests/672709-ref.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 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3   <body>
     4     <style>
     5       :-moz-read-only { color: red; }
     6       :-moz-read-write { color: green; }
     7     </style>
     8     <script>
     9       onload = function() {
    10         document.designMode = "on";
    11         var p = document.createElement("p");
    12         p.textContent = "test";
    13         document.getElementById("x").appendChild(p);
    14         getSelection().removeAllRanges(); // don't need a caret
    15         document.documentElement.removeAttribute("class");
    16       };
    17     </script>
    18     <div contenteditable id="x">
    19     </div>
    20     more test
    21   </body>
    22 </html>

mercurial