gecko-dev/docshell/test/navigation/file_bug508537_1.html
Toby Ward 75e6200c17 Bug 1496082: Enable ESLint for docshell/test/navigation and docshell/test/unit (automatic fixes only). r=bzbarsky
Enabled ESLint for:

* docshell/test/navigation/**
* docshell/test/unit/**
* docshell/test/unit_ipc/**

Changed .eslintignore to allow for this and ran ./mach eslint --fix on the above directories and checked automatic fixes

Differential Revision: https://phabricator.services.mozilla.com/D9430

--HG--
extra : moz-landing-system : lando
2018-11-07 13:55:47 +00:00

35 lines
1.0 KiB
HTML

<html>
<head>
<script>
function dynFrameLoad() {
var ifrs = document.getElementsByTagName("iframe");
opener.ok(String(ifrs[0].contentWindow.location).includes(ifrs[0].src),
"Wrong document loaded (1)\n");
opener.ok(String(ifrs[1].contentWindow.location).includes(ifrs[1].src),
"Wrong document loaded (2)\n");
if (opener && ++opener.testCount == 1) {
window.location = "goback.html";
} else {
opener.nextTest();
window.close();
}
}
window.addEventListener("load",
function() {
var container = document.getElementById("t1");
container.addEventListener("load", dynFrameLoad, true);
container.appendChild(container.appendChild(document.getElementById("i1")));
});
</script>
</head>
<body>
<h5>Container:</h5>
<div id="t1"></div>
<h5>Original frames:</h5>
<iframe id="i1" src="frame0.html"></iframe>
<iframe src="frame1.html"></iframe>
</body>
</html>