1405771.html (487B)
1 <html> 2 <head> 3 <script></script> 4 <!-- a --> 5 <script> 6 window.onload=function(){ 7 let s=window.getSelection(); 8 let r=document.createRange(); 9 r.selectNode(document.getElementById('b')); 10 s.addRange(r); 11 try{window.getSelection().modify('extend','forward','word')}catch(e){} 12 let o=document.getElementById('a'); 13 o.parentNode.replaceChild(document.createElement('col'), o); 14 } 15 </script> 16 > 17 <template id='a' contenteditable='true'></template> 18 <header id='b'></header> 19 <!-- a --> 20 </html>