blob: 86dd212b84a81b48d5b038a191a6053a5dd994d2 (
plain)
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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=343444
-->
<head>
<title>Test for Bug 343444</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" 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=343444">Mozilla Bug 343444</a>
<p id="display"></p>
<form>
<fieldset id="testradio">
<input type="radio" name="testradio" id="start"></input>
<input type="text" name="testradio"></input>
<input type="text" name="testradio"></input>
<input type="radio" name="testradio"></input>
<input type="text" name="testradio"></input>
<input type="radio" name="testradio"></input>
<input type="text" name="testradio"></input>
<input type="radio" name="testradio"></input>
<input type="radio" name="testradio"></input>
<input type="text" name="testradio"></input>
</fieldset>
<fieldset>
<input type="radio" name="testtwo" id="start2"></input>
<input type="radio" name="testtwo"></input>
<input type="radio" name="error" id="testtwo"></input>
<input type="radio" name="testtwo" id="end"></input>
</fieldset>
<fieldset>
<input type="radio" name="testthree" id="start3"></input>
<input type="radio" name="errorthree" id="testthree"></input>
</fieldset>
</form>
<script class="testbody" type="text/javascript">
/** Test for Bug 343444 **/
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set":[["snav.enabled", false]]}, startTest);
function startTest() {
document.getElementById("start").focus();
var count=0;
while (count < 2) {
sendKey("DOWN");
is(document.activeElement.type, "radio", "radioGroup should ignore non-radio input fields");
if (document.activeElement.id == "start") {
count++;
}
}
document.getElementById("start2").focus();
count = 0;
while (count < 3) {
is(document.activeElement.name, "testtwo",
"radioGroup should only contain elements with the same @name")
sendKey("DOWN");
count++;
}
document.getElementById("start3").focus();
sendKey("DOWN");
is(document.activeElement.name, "testthree", "we don't have an infinite-loop");
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>
|