mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
23 lines
612 B
HTML
23 lines
612 B
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>
|