Bug 1061469 - part9: test: defaultView should be null for imports. r=mrbkap

This commit is contained in:
Gabor Krizsanits 2014-10-31 13:03:03 +01:00
parent 1900e01f89
commit 5a42a7c1b5
3 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,4 @@
<!DOCTYPE html>
<head>
</head>
<body>Simple import</body>

View File

@ -36,6 +36,7 @@ support-files =
file_cycle_5_C.html
file_cycle_5_D.html
file_encoding.html
file_simple_import.html
[test_cycle_1.html]
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
@ -48,3 +49,4 @@ skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
[test_cycle_5.html]
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
[test_encoding.html]
[test_defaultView.html]

View File

@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1061469
-->
<head>
<title>Test for Bug 1061469</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1061469">Mozilla Bug 1061469</a>
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();
var success = false;
function loaded() {
success = true;
}
function failed() {
ok(false, "Import loading failed");
}
</script>
<link rel="import" href="file_simple_import.html" id="import" onload="loaded()" onerror="failed()"></link>
<script type="text/javascript">
document.defaultView;
is(document.getElementById("import").import.defaultView, null, "defaultView is always null for imports");
SimpleTest.finish();
</script>
</body>
</html>