880862.html (454B)
1 <html> 2 <head> 3 <meta charset="UTF-8"> 4 <script> 5 6 function boom() 7 { 8 // This file tests if we create a shutdown leak. 9 document.getElementById("c").getContext("2d").fillText("x", 0, 0); 10 document.styleSheets[0].cssRules[0].style.whatever = "create an expando to preserve the wrapper"; 11 } 12 13 </script> 14 15 <style> 16 17 @font-face { 18 font-family: missing; 19 src: local(missing); 20 } 21 22 </style> 23 </head> 24 25 <body onload="boom();"> 26 <canvas id="c"></canvas> 27 </body> 28 </html>