1611853.html (367B)
1 <html class="reftest-wait"> 2 <head> 3 <style> 4 * { 5 user-select: none; 6 } 7 </style> 8 <script> 9 function start () { 10 document.execCommand('selectAll', false); 11 document.documentElement.removeAttribute("class"); 12 } 13 </script> 14 </head> 15 <body onload="start()"> 16 <div contentEditable="true"></div> 17 </body> 18 </html>