1576972-1.html (542B)
1 <html> 2 <head> 3 <style> 4 * { 5 quotes: none !important; 6 } 7 </style> 8 <script> 9 function start () { 10 const o1 = document.getElementById('id_1') 11 const o2 = document.createElement('q') 12 const o3 = document.createElement('v') 13 document.documentElement.appendChild(o1) 14 o3.dir = 'rtl' 15 o2.appendChild(o3) 16 document.documentElement.appendChild(o2) 17 } 18 19 document.addEventListener('DOMContentLoaded', start) 20 </script> 21 </head> 22 <q id="id_1"> 23 </html>