designMode-on-of-lazy-loading-iframe.html (375B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 *::first-letter {} 7 </style> 8 <script> 9 addEventListener("load", () => { 10 const iframe = document.querySelector("iframe"); 11 iframe.contentWindow.focus(); 12 document.styleSheets[0].deleteRule(0); 13 iframe.contentWindow.document.designMode = "on"; 14 }); 15 </script> 16 </head> 17 <body> 18 <iframe loading="lazy"> 19 </body> 20 </html>