Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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> |