Bug 1045270 - Part 3: Add a test case; r=smaug

This commit is contained in:
Ehsan Akhgari 2014-07-31 20:27:04 -04:00
parent 72f287fed2
commit 9f5008434c
2 changed files with 47 additions and 0 deletions

View File

@ -419,6 +419,7 @@ skip-if = (toolkit == 'gonk' && debug) || e10s #debug-only failure
[test_bug969346.html]
[test_bug982039.html]
[test_bug1003539.html]
[test_bug1045270.html]
[test_change_crossorigin.html]
[test_checked.html]
[test_dir_attributes_reflection.html]

View File

@ -0,0 +1,46 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1045270
-->
<head>
<title>Test for Bug 583514</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=1045270">Mozilla Bug 1045270</a>
<p id="display"></p>
<div id="content">
<input type=number>
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 1045270 **/
var input = document.querySelector("input");
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
input.focus();
input.addEventListener("input", function() {
// reframe
document.body.style.display = "none";
document.body.style.display = "";
document.body.offsetLeft; // flush
}, false);
synthesizeKey("1", {});
SimpleTest.executeSoon(function() {
synthesizeKey("2", {});
SimpleTest.executeSoon(function() {
is(input.value, 12, "Reframe should restore focus and selection properly");
SimpleTest.finish();
});
});
});
</script>
</pre>
</body>
</html>