gecko-dev/dom/html/test/test_bug1260704.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

91 lines
2.8 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1260704
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 1260704</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript">
/** Test for Bug 1260704 **/
function runTests() {
let testIdx = -1;
let testUrls = [
"bug1260704_iframe.html?noDefault=true&isMap=true",
"bug1260704_iframe.html?noDefault=true&isMap=false",
"bug1260704_iframe.html?noDefault=false&isMap=true",
"bug1260704_iframe.html?noDefault=false&isMap=false"
];
let runningTest = false;
let iframe = document.getElementById("testFrame");
let iframeWin = iframe.contentWindow;
let rect;
let x;
let y;
window.addEventListener("message", event => {
if (event.data == "started") {
ok(!runningTest, "Start to test " + testIdx);
runningTest = true;
rect = iframeWin.document.getElementById("testImage").getBoundingClientRect();
x = rect.width / 2;
y = rect.height / 2;
synthesizeMouseAtPoint(rect.left + x, rect.top + y, { type: 'mousedown' }, iframeWin);
synthesizeMouseAtPoint(rect.left + x, rect.top + y, { type: 'mouseup' }, iframeWin);
}
else if (runningTest && event.data == "empty_frame_loaded") {
ok(testUrls[testIdx].includes("noDefault=false"), "Page unload");
let search = iframeWin.location.search;
if (testUrls[testIdx].includes("isMap=true")) {
// url trigger by image with ismap attribute should contains coordinates
// try to parse coordinates and check them with small tolerance
let coorStr = search.split("?");
let coordinates = coorStr[1].split(",");
ok(Math.abs(coordinates[0] - x) <= 1, "expect X=" + x + " got " + coordinates[0]);
ok(Math.abs(coordinates[1] - y) <= 1, "expect Y=" + y + " got " + coordinates[1]);
} else {
ok(search == "", "expect empty search string got:" + search);
}
nextTest();
}
else if (runningTest && event.data == "finished") {
ok(testUrls[testIdx].includes("noDefault=true"), "Page should not leave");
nextTest();
}
});
function nextTest() {
testIdx++;
runningTest = false;
if (testIdx >= testUrls.length) {
SimpleTest.finish();
} else {
ok(true, "Test " + testIdx + " - Set url to " + testUrls[testIdx]);
iframeWin.location.href = testUrls[testIdx];
}
}
nextTest();
}
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(runTests);
</script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<iframe id="testFrame" src="about:blank" width="400" height="400">
</iframe>
<pre id="test">
</pre>
</body>
</html>