Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 </head>
6 <body>
7 <div>
8 <textarea id="right-to-left1" dir="auto" class="testElement">جناع</textarea>
9 <input type="text" id="right-to-left2" dir="auto" value="שלום">
10 </div>
11 <script type="text/javascript">
12 var test1=document.getElementById("right-to-left1");
13 var test2=document.getElementById("right-to-left2");
14 test2.appendChild(document.createTextNode("hello"));
15 setInterval(function() {
16 test1.appendChild(test2);
17 test2.parentNode.removeChild;
18 test1.innerHTML="goodbye";
19 }, 4);
20 </script>
21 </body>
22 </html>