2011-03-25 14:30:36 +03:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=633058
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 633058</title>
|
|
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/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=633058">Mozilla Bug 633058</a>
|
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content">
|
|
|
|
<input>
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
<script type="application/javascript">
|
|
|
|
|
|
|
|
/** Test for Bug 633058 **/
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
2013-10-12 21:59:50 +04:00
|
|
|
// Turn off Spatial Navigation so that the 'keypress' event fires.
|
2011-03-25 14:30:36 +03:00
|
|
|
SimpleTest.waitForFocus(function() {
|
2015-02-19 19:53:01 +03:00
|
|
|
SpecialPowers.pushPrefEnv({"set":[['snav.enabled', false]]}, startTest);
|
|
|
|
});
|
|
|
|
function startTest() {
|
2011-03-25 14:30:36 +03:00
|
|
|
var nbExpectedKeyPress = 8;
|
|
|
|
var inputGotKeyPress = 0;
|
|
|
|
var divGotKeyPress = 0;
|
|
|
|
|
|
|
|
var input = document.getElementsByTagName('input')[0];
|
|
|
|
var content = document.getElementById('content');
|
|
|
|
|
|
|
|
content.addEventListener('keypress', function() {
|
|
|
|
divGotKeyPress++;
|
|
|
|
|
|
|
|
if (divGotKeyPress == nbExpectedKeyPress) {
|
|
|
|
is(inputGotKeyPress, nbExpectedKeyPress, "input got all keypress events");
|
|
|
|
is(divGotKeyPress, nbExpectedKeyPress, "div got all keypress events");
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
2017-01-17 13:50:25 +03:00
|
|
|
});
|
2011-03-25 14:30:36 +03:00
|
|
|
|
|
|
|
input.addEventListener('keypress', function() {
|
|
|
|
inputGotKeyPress++;
|
2017-01-17 13:50:25 +03:00
|
|
|
});
|
2011-03-25 14:30:36 +03:00
|
|
|
|
|
|
|
input.addEventListener('focus', function() {
|
|
|
|
synthesizeKey('VK_UP', {});
|
|
|
|
synthesizeKey('VK_LEFT', {});
|
|
|
|
synthesizeKey('VK_RIGHT', {});
|
|
|
|
synthesizeKey('VK_DOWN', {});
|
|
|
|
synthesizeKey('VK_BACK_SPACE', {});
|
|
|
|
synthesizeKey('VK_DELETE', {});
|
|
|
|
synthesizeKey('VK_ESCAPE', {});
|
|
|
|
synthesizeKey('VK_RETURN', {});
|
2017-01-25 09:01:52 +03:00
|
|
|
}, {once: true});
|
2011-03-25 14:30:36 +03:00
|
|
|
input.focus();
|
2015-02-19 19:53:01 +03:00
|
|
|
}
|
2011-03-25 14:30:36 +03:00
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|