summaryrefslogtreecommitdiffstats
path: root/dom/html/test/forms/test_radio_radionodelist.html
blob: 8761c22b584530e3e9f0abbae3498dd226c40f09 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=779723
-->
<head>
  <title>Test for Bug 779723</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <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=779723">Mozilla Bug 779723</a>
<p id="display"></p>
<form>
  <input type="checkbox" name="rdo" value="0" id="r0" checked="checked">
  <input type="radio" name="rdo" id="r1">
  <input type="radio" name="rdo" id="r2" value="2">
</form>
<script class="testbody" type="text/javascript">
/** Test for Bug 779723 **/

var rdoList = document.forms[0].elements.namedItem('rdo');
is(rdoList.value, "", "The value attribute should be empty");

document.getElementById('r2').checked = true;
is(rdoList.value, "2", "The value attribute should be 2");

document.getElementById('r1').checked = true;
is(rdoList.value, "on", "The value attribute should be on");

document.getElementById('r1').value = 1;
is(rdoList.value, "1", "The value attribute should be 1");

is(rdoList.value, document.getElementById('r1').value,
  "The value attribute should be equal to the first checked radio input element's value");
ok(!document.getElementById('r2').checked,
   "The second radio input element should not be checked");

rdoList.value = '2';
is(rdoList.value, document.getElementById('r2').value,
  "The value attribute should be equal to the second radio input element's value");
ok(document.getElementById('r2').checked,
   "The second radio input element should be checked");

rdoList.value = '3';
is(rdoList.value, document.getElementById('r2').value,
  "The value attribute should be the second radio input element's value");
ok(document.getElementById('r2').checked,
   "The second radio input element should be checked");

</script>
</pre>
</body>
</html>