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.
michael@0 | 1 | <!DOCTYPE html> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <meta charset="utf-8"> |
michael@0 | 5 | </head> |
michael@0 | 6 | <body> |
michael@0 | 7 | <div> |
michael@0 | 8 | <textarea id="right-to-left1" dir="auto" class="testElement">جناع</textarea> |
michael@0 | 9 | <input type="text" id="right-to-left2" dir="auto" value="שלום"> |
michael@0 | 10 | </div> |
michael@0 | 11 | <script type="text/javascript"> |
michael@0 | 12 | var test1=document.getElementById("right-to-left1"); |
michael@0 | 13 | var test2=document.getElementById("right-to-left2"); |
michael@0 | 14 | test2.appendChild(document.createTextNode("hello")); |
michael@0 | 15 | setInterval(function() { |
michael@0 | 16 | test1.appendChild(test2); |
michael@0 | 17 | test2.parentNode.removeChild; |
michael@0 | 18 | test1.innerHTML="goodbye"; |
michael@0 | 19 | }, 4); |
michael@0 | 20 | </script> |
michael@0 | 21 | </body> |
michael@0 | 22 | </html> |