1429523.xhtml (556B)
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> 2 <head> 3 <script> 4 document.designMode = "on"; 5 Promise.all([ 6 new Promise(resolve => addEventListener("load", resolve)), 7 new Promise(resolve => addEventListener("focus", resolve)), 8 ]).then(() => { 9 document.body.firstChild.data = ""; 10 document.documentElement.removeAttribute("class"); 11 }); 12 blur(); 13 focus(); 14 getSelection().collapse(document.body, 0); 15 </script> 16 </head> 17 <body><![CDATA[ CDATA ]]></body> 18 </html>