1400701.html (407B)
1 <html> 2 <script> 3 window.onload=function(){ 4 document.getElementById('b').textContent='Or'; 5 document.getElementById('a').insertBefore(document.getElementById('c'), undefined); 6 document.getElementById('b').dir='ltr'; 7 let o=document.getElementById('b'); 8 o.parentNode.replaceChild(document.createElement('code'), o); 9 } 10 </script> 11 <body dir='auto' id='a'> 12 <bdi id='b' dir='auto'> 13 </bdi> 14 <q id='c'> 15 </html>