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

119 lines
3.3 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=481335
-->
<head>
<title>Test for Bug 481335</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<style type="text/css">
a { color:blue; }
a:visited { color:red; }
</style>
<base href="http://www.example.com/" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=481335">Mozilla Bug 481335</a>
<p id="display">
<a id="t">A link</a>
<iframe id="i"></iframe>
</p>
<p id="newparent"></p>
<div id="content" style="display: none"></div>
<pre id="test">
<script type="application/javascript">
<![CDATA[
/** Test for Bug 481335 **/
SimpleTest.waitForExplicitFinish();
var rand = Date.now() + "-" + Math.random();
is($("t").href, "",
"Unexpected href before set");
is($("t").href, "",
"Unexpected cached href before set");
$("t").setAttribute("href", rand);
is($("t").href, "http://www.example.com/" + rand,
"Unexpected href after set");
is($("t").href, "http://www.example.com/" + rand,
"Unexpected cached href after set");
const unvisitedColor = "rgb(0, 0, 255)";
const visitedColor = "rgb(255, 0, 0)";
let tests = testIterator();
function continueTest() {
tests.next();
}
function checkLinkColor(aElmId, aExpectedColor, aMessage) {
// Because link coloring is asynchronous, we wait until we get the right
// result, or we will time out (resulting in a failure).
function getColor() {
var utils = SpecialPowers.getDOMWindowUtils(window);
return utils.getVisitedDependentComputedStyle($(aElmId), "", "color");
}
while (getColor() != aExpectedColor) {
setTimeout(continueTest, 0);
return false;
}
is(getColor(), aExpectedColor, aMessage);
return true;
}
function* testIterator() {
// After first load
$("newparent").appendChild($("t"));
is($("t").href, "http://www.example.com/" + rand,
"Unexpected href after move");
is($("t").href, "http://www.example.com/" + rand,
"Unexpected cached href after move");
while (!checkLinkColor("t", unvisitedColor, "Should be unvisited now"))
yield undefined;
$("i").src = $("t").href;
yield undefined;
// After second load
while (!checkLinkColor("t", visitedColor, "Should be visited now"))
yield undefined;
$("t").pathname = rand;
while (!checkLinkColor("t", visitedColor,
"Should still be visited after setting pathname to its existing value")) {
yield undefined;
}
/* TODO uncomment this test with the landing of bug 534526. See
* https://bugzilla.mozilla.org/show_bug.cgi?id=461199#c167
$("t").pathname += "x";
while (!checkLinkColor("t", unvisitedColor,
"Should not be visited after changing pathname")) {
yield undefined;
}
$("t").pathname = $("t").pathname;
while (!checkLinkColor("t", unvisitedColor,
"Should not be visited after setting unvisited pathname to existing value")) {
yield undefined;
}
*/
$("i").src = $("t").href;
yield undefined;
// After third load
while (!checkLinkColor("t", visitedColor,
"Should be visited now after third load")) {
yield undefined;
}
SimpleTest.finish();
}
addLoadEvent(function() {
$("i").onload = continueTest;
$("i").src = $("t").href;
});
]]>
</script>
</pre>
</body>
</html>