Bug 1077002 - Add a test. r=jimm

This commit is contained in:
Blake Kaplan 2015-02-26 14:23:45 -08:00
parent 2d5584a6c7
commit 7dbc6209d0
2 changed files with 38 additions and 0 deletions

View File

@ -47,6 +47,8 @@ skip-if = (buildapp == 'b2g' && toolkit != 'gonk') #Bug 931116, b2g desktop spec
skip-if = (buildapp == 'b2g' && toolkit != 'gonk') #Bug 931116, b2g desktop specific, initial triage
[test_bug653364.html]
[test_bug861217.html]
[test_bug1077002.html]
run-if = e10s
[test_clientRects.html]
[test_clipboard_events.html]
skip-if = e10s || buildapp == 'b2g' # b2g(clipboard undefined) b2g-debug(clipboard undefined) b2g-desktop(clipboard undefined)

View File

@ -0,0 +1,36 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1077002
-->
<head>
<title>Test for Bug 1077002</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank"
href="https://bugzilla.mozilla.org/show_bug.cgi?id=1077002">Mozilla Bug 1077002</a>
<p id="display"></p>
<div id="content">
<iframe id="frame" style="height:100px; width:100px; border:0"></iframe>
<div id="status" style="display: none"></div>
</div>
<pre id="test">
<script type="application/javascript;version=1.7">
/** Test for Bug 1077002 **/
try {
// NB: This test runs in e10s only. In e10s showModalDialog should only
// ever throw NS_ERROR_NOT_AVAILABLE.
window.showModalDialog("http://example.org");
} catch (e) {
is(e.name, "NS_ERROR_NOT_AVAILABLE", "throw the correct error message");
}
</script>
</pre>
</body>
</html>