mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 06:05:44 +00:00
ffec923436
MozReview-Commit-ID: KaCuwJJPTmO --HG-- extra : rebase_source : d6bffff07096c19c5bb4fd94004bec5f16e33fe9 extra : amend_source : 7cb1b494bf72c31b72c990e46b4dc9a89a072ac1
31 lines
846 B
HTML
31 lines
846 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=??
|
|
-->
|
|
<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_texImage2D.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>
|