1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=331959
-->
<head>
<title>Test for Bug 331959</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"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=331959">Mozilla Bug 331959</a>
<p id="display">
<iframe id="link-in-link-mouse"></iframe>
<iframe id="link-in-link-keyboard"></iframe>
<iframe id="input-in-link-mouse"></iframe>
<iframe id="input-in-link-keyboard"></iframe>
<iframe id="button-in-link-mouse"></iframe>
<iframe id="button-in-link-keyboard"></iframe>
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 331959 */
SimpleTest.waitForExplicitFinish();
const FAILURL = "FAIL.html";
const PASSURL = "PASS.html";
var currentTest = 0;
var tests = [ testLinkInLinkMouse, testLinkInLinkKeyboard,
testInputInLinkMouse, testInputInLinkKeyboard,
testButtonInLinkMouse, testButtonInLinkKeyboard ];
function doNextTest() {
if (currentTest == tests.length) {
SimpleTest.finish();
} else {
tests[currentTest++]();
}
}
function generateLinkInLink(id, desc) {
var doc = $(id).contentDocument;
var outerA = doc.createElement("a");
var innerA = doc.createElement("a");
outerA.id = "outer";
innerA.id = "inner";
innerA.href = PASSURL;
outerA.href = FAILURL;
innerA.appendChild(doc.createTextNode("Text"));
outerA.appendChild(innerA);
doc.body.appendChild(outerA);
$(id).onload = function() {
is(this.contentDocument.documentElement.innerText, "PASS", desc);
// Have to remove the iframe we used from the DOM, because the harness is
// stupid and doesn't have enough space for more than one iframe.
$(id).remove();
doNextTest();
};
return [innerA, $(id).contentWindow];
}
function testLinkInLinkMouse() {
var [innerA, testWin] =
generateLinkInLink("link-in-link-mouse",
"Clicking an inner link should load the inner link");
synthesizeMouseAtCenter(innerA, {}, testWin);
}
function testLinkInLinkKeyboard() {
var [innerA, testWin] =
generateLinkInLink("link-in-link-keyboard",
"Hitting enter on an inner link should load the inner link");
innerA.focus();
synthesizeKey("VK_RETURN", {}, testWin);
}
function generateInputInLink(id, desc) {
var doc = $(id).contentDocument;
doc.body.innerHTML =
"<form action='" + PASSURL + "'><a href='" + FAILURL +
"'><input type='submit' id='submit'>";
$(id).onload = function() {
is(this.contentDocument.documentElement.innerText, "PASS", desc);
// Have to remove the iframe we used from the DOM, because the harness is
// stupid and doesn't have enough space for more than one iframe.
$(id).remove();
doNextTest();
};
var input = doc.getElementById("submit");
doc.body.offsetWidth;
return [input, $(id).contentWindow];
}
function testInputInLinkMouse() {
var [input, testWin] =
generateInputInLink("input-in-link-mouse",
"Clicking an submit input inside an anchor should submit the form");
synthesizeMouseAtCenter(input, {}, testWin);
}
function testInputInLinkKeyboard() {
var [input, testWin] =
generateInputInLink("input-in-link-keyboard",
"Return on submit input inside an anchor should submit the form");
input.focus();
synthesizeKey("VK_RETURN", {}, testWin);
}
function generateButtonInLink(id, desc) {
var doc = $(id).contentDocument;
doc.body.innerHTML =
"<form action='" + PASSURL + "'><a href='" + FAILURL +
"'><button type='submit' id='submit'>Submit</button>";
$(id).onload = function() {
is(this.contentDocument.documentElement.innerText, "PASS", desc);
// Have to remove the iframe we used from the DOM, because the harness is
// stupid and doesn't have enough space for more than one iframe.
$(id).remove();
doNextTest();
};
var button = doc.getElementById("submit");
return [button, $(id).contentWindow];
}
function testButtonInLinkMouse() {
var [button, testWin] =
generateButtonInLink("button-in-link-mouse",
"Clicking an submit button inside an anchor should submit the form");
synthesizeMouseAtCenter(button, {}, testWin);
}
function testButtonInLinkKeyboard() {
var [button, testWin] =
generateButtonInLink("button-in-link-keyboard",
"Return on submit button inside an anchor should submit the form");
button.focus();
synthesizeKey("VK_RETURN", {}, testWin);
}
// We need focus to handle clicks properly
SimpleTest.waitForFocus(doNextTest);
</script>
</pre>
</body>
</html>
|