829817.html (293B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 @page {} 7 8 </style> 9 <script> 10 11 function boom() 12 { 13 // This shouldn't cause a shutdown leak. 14 document.styleSheets[0].cssRules[0].style.someExpando = "set an expando to preserve the wrapper"; 15 } 16 17 </script> 18 </head> 19 <body onload="boom();"></body> 20 </html>