mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1061469 - part9: test: defaultView should be null for imports. r=mrbkap
This commit is contained in:
parent
1900e01f89
commit
5a42a7c1b5
4
dom/html/test/imports/file_simple_import.html
Normal file
4
dom/html/test/imports/file_simple_import.html
Normal file
@ -0,0 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
</head>
|
||||
<body>Simple import</body>
|
@ -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]
|
||||
|
31
dom/html/test/imports/test_defaultView.html
Normal file
31
dom/html/test/imports/test_defaultView.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user