880862.html 454 B

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