gecko-dev/dom/html/test/test_bug445004.html
Brian Grinstead 0d460e3432 Bug 1544322 - Part 2.2 - Remove the [type] attribute for one-liner <script> tags loading files in /tests/SimpleTest/ in dom/ r=bzbarsky
This is split from the previous changeset since if we include dom/ the file size is too
large for phabricator to handle.

This is an autogenerated commit to handle scripts loading mochitest harness files, in
the simple case where the script src is on the same line as the tag.

This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170
using the `--part 2` argument.

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

--HG--
extra : moz-landing-system : lando
2019-04-16 03:53:28 +00:00

139 lines
3.9 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=445004
-->
<head>
<title>Test for Bug 445004</title>
<script src="/tests/SimpleTest/SimpleTest.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=445004">Mozilla Bug 445004</a>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 445004 **/
is(window.location.hostname, "mochi.test", "Unexpected hostname");
is(window.location.port, "8888", "Unexpected port; fix testcase");
SimpleTest.waitForExplicitFinish();
var loads = 1;
function loadStarted() {
++loads;
}
function loadEnded() {
--loads;
if (loads == 0) {
doTest();
}
}
window.onload = loadEnded;
function getMessage(evt) {
ok(evt.data == "start" || evt.data == "end", "Must have start or end");
if (evt.data == "start")
loadStarted();
else
loadEnded();
}
window.addEventListener("message", getMessage);
function checkURI(uri, name, type) {
var host = uri.match(/^http:\/\/([a-z.0-9]*)/)[1];
var file = uri.match(/([^\/]*).png$/)[1];
is(host, file, "Unexpected base URI for test " + name +
" when testing " + type);
}
function checkFrame(num) {
// Just snarf our data
var outer = SpecialPowers.wrap(window.frames[num]);
name = outer.name;
is(outer.document.baseURI,
"http://example.org/tests/dom/html/test/bug445004-outer.html",
"Unexpected base URI for " + name);
var iswrite = name.match(/write/);
var inner = outer.frames[0];
if (iswrite) {
is(inner.document.baseURI,
"http://example.org/tests/dom/html/test/bug445004-outer.html",
"Unexpected inner base URI for " + name);
} else {
is(inner.document.baseURI,
"http://test1.example.org/tests/dom/html/test/bug445004-inner.html",
"Unexpected inner base URI for " + name);
}
var isrel = name.match(/rel/);
var offsite = name.match(/offsite/);
if (!iswrite) {
if ((isrel && !offsite) || (!isrel && offsite)) {
is(inner.location.hostname, outer.location.hostname,
"Unexpected hostnames for " + name);
} else {
isnot(inner.location.hostname, outer.location.hostname,
"Unexpected hostnames for " + name);
}
}
checkURI(inner.frames[0].location.href, name, "direct location");
checkURI(inner.frames[1].document.getElementsByTagName("img")[0].src,
name, "direct write");
if (!iswrite) {
is(inner.frames[1].location.hostname, inner.location.hostname,
"Incorrect hostname for " + name + " direct write")
}
checkURI(inner.frames[2].location.href, name, "indirect location");
checkURI(inner.frames[3].document.getElementsByTagName("img")[0].src,
name, "indirect write");
if (!iswrite) {
is(inner.frames[3].location.hostname, outer.location.hostname,
"Incorrect hostname for " + name + " indirect write")
}
checkURI(inner.document.getElementsByTagName("img")[0].src,
name, "direct image load");
}
function doTest() {
for (var num = 0; num < 5; ++num) {
checkFrame(num);
}
SimpleTest.finish();
}
</script>
</pre>
<p id="display">
<iframe
src="http://example.org/tests/dom/html/test/bug445004-outer-rel.html"
name="bug445004-outer-rel.html"></iframe>
<iframe
src="http://test1.example.org/tests/dom/html/test/bug445004-outer-rel.html"
name="bug445004-outer-rel.html offsite"></iframe>
<iframe
src="http://example.org/tests/dom/html/test/bug445004-outer-abs.html"
name="bug445004-outer-abs.html"></iframe>
<iframe
src="http://test1.example.org/tests/dom/html/test/bug445004-outer-abs.html"
name="bug445004-outer-abs.html offsite"></iframe>
<iframe
src="http://example.org/tests/dom/html/test/bug445004-outer-write.html"
name="bug445004-outer-write.html"></iframe>
</p>
</body>
</html>