1140198.html (283B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 document.documentElement.style.display = "contents"; 9 document.designMode = 'on'; 10 document.documentElement.insertAdjacentHTML("beforeEnd", "<span><optgroup>"); 11 } 12 13 </script> 14 </head> 15 <body onload="boom();"></body> 16 </html>