mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
30
dom/canvas/test/crash/test_bug1233613.html
Normal file
30
dom/canvas/test/crash/test_bug1233613.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1233613
|
||||
-->
|
||||
<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_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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue