https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3b8a635106f0d2986e6592c5a11738d1dad2c7f3 authored by Mozilla Releng Treescript on 14 June 2024, 02:44:31 UTC
no bug - Merge android-l10n translations from mozilla-central r=release a=l10n
Tip revision: 3b8a635
819014.html
<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
 </head>
 <body>
  <div>
   <textarea id="right-to-left1" dir="auto" class="testElement">جناع</textarea>
   <input type="text" id="right-to-left2" dir="auto" value="שלום">
  </div>
  <script type="text/javascript">
   var test1=document.getElementById("right-to-left1");
   var test2=document.getElementById("right-to-left2");
   test2.appendChild(document.createTextNode("hello"));
   setInterval(function() {
     test1.appendChild(test2);
     test2.parentNode.removeChild;
     test1.innerHTML="goodbye";
   }, 4);
  </script>
 </body>
</html>
back to top