dom/canvas/test/crash/test_bug1233613.html
author Gabriel Luong <gabriel.luong@gmail.com>
Sun, 13 Jul 2025 02:28:40 +0000 (7 hours ago)
changeset 796385 23185ed855a5b168943bde8ebe8ec946cd83f675
parent 469641 ba6f655fd68963530c866d0d4a48c3db3d307777
permissions -rw-r--r--
Bug 1972159 - Part 25: Enable Compose Homepage by default and remove associated settings and Nimbus flags r=android-reviewers,devota Differential Revision: https://phabricator.services.mozilla.com/D254598
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1233613
-->
<head>
  <title>Test for webgl crashing</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>

<body>
  <script class="testbody" type="application/javascript">
  SimpleTest.waitForExplicitFinish();
  ok(true, "expecting an exception, not a crash");

    var iframe = document.getElementById('iframe1');
    try {
        iframe.src = 'file_bug1233613.html';
        ok(false, 'loaded the iframe and we did not see a crash, perfect!');
    } catch (e) {
        ok(true, "caught exception in boom");
    }
    SimpleTest.finish();

  </script>
  <iframe id="iframe1" src="" width="600" height="600"></iframe>
</body>
</html>