summaryrefslogtreecommitdiffstats
path: root/dom/canvas/test/crash/test_798802-1.html
blob: 701bfeaabda3baf2c1f2f491e4c797e6e0ebd819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=798802
-->
<head>
  <title>Test for webgl crashing</title>
  <script type="text/javascript" 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_798802-1.html';
        ok(false, 'loaded the iframe and we did not see a crash, perfect!');
    } catch (e) {
        ok(true, "caught exception in loading the iframe");
    }
    SimpleTest.finish();

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