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
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=615697
-->
<head>
<title>Test for Bug 615697</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=615697">Mozilla Bug 615697</a>
<p id="display"></p>
<div id="content">
<input>
<textarea></textarea>
<input type='radio'>
<input type='checkbox'>
<select>
<option>foo</option>
<option>bar</option>
</select>
<select multiple size='1'>
<option>tulip</option>
</select>
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 615697 **/
/**
* This test is making all elements trigger 'change' event.
* You should read the test from bottom to top:
* events are registered from the last one to the first one.
*
* Sometimes, elements are focused before a click. This might sound useless
* but it guarantees to have the element visible before simulating the click.
*/
var input = document.getElementsByTagName('input')[0];
var textarea = document.getElementsByTagName('textarea')[0];
var radio = document.getElementsByTagName('input')[1];
var checkbox= document.getElementsByTagName('input')[2];
var select = document.getElementsByTagName('select')[0];
var selectMultiple = document.getElementsByTagName('select')[1];
function checkChangeEvent(aEvent)
{
ok(aEvent.bubbles, "change event should bubble");
ok(!aEvent.cancelable, "change event shouldn't be cancelable");
}
selectMultiple.addEventListener("change", function(aEvent) {
checkChangeEvent(aEvent);
SimpleTest.finish();
}, {once: true});
selectMultiple.addEventListener("focus", function() {
SimpleTest.executeSoon(function () {
synthesizeMouseAtCenter(selectMultiple, {});
});
}, {once: true});
select.addEventListener("change", function(aEvent) {
checkChangeEvent(aEvent);
selectMultiple.focus();
}, {once: true});
select.addEventListener("keyup", function() {
select.blur();
}, {once: true});
select.addEventListener("focus", function() {
SimpleTest.executeSoon(function () {
synthesizeKey("KEY_ArrowDown");
});
}, {once: true});
checkbox.addEventListener("change", function(aEvent) {
checkChangeEvent(aEvent);
select.focus();
}, {once: true});
checkbox.addEventListener("focus", function() {
SimpleTest.executeSoon(function () {
synthesizeMouseAtCenter(checkbox, {});
});
}, {once: true});
radio.addEventListener("change", function(aEvent) {
checkChangeEvent(aEvent);
checkbox.focus();
}, {once: true});
radio.addEventListener("focus", function() {
SimpleTest.executeSoon(function () {
synthesizeMouseAtCenter(radio, {});
});
}, {once: true});
textarea.addEventListener("change", function(aEvent) {
checkChangeEvent(aEvent);
radio.focus();
}, {once: true});
textarea.addEventListener("input", function() {
textarea.blur();
}, {once: true});
textarea.addEventListener("focus", function() {
SimpleTest.executeSoon(function () {
sendString("f");
});
}, {once: true});
input.addEventListener("change", function(aEvent) {
checkChangeEvent(aEvent);
textarea.focus();
}, {once: true});
input.addEventListener("input", function() {
input.blur();
}, {once: true});
input.addEventListener("focus", function() {
SimpleTest.executeSoon(function () {
sendString("f");
});
}, {once: true});
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
input.focus();
});
</script>
</pre>
</body>
</html>
|