Test case for bug 638596; r=roc

This commit is contained in:
Ehsan Akhgari 2011-03-04 13:44:25 -08:00
parent 8d74540d77
commit eaafa97906
2 changed files with 39 additions and 0 deletions

View File

@ -59,6 +59,7 @@ _TEST_FILES = \
test_bug604532.html \
test_bug625452.html \
test_bug629172.html \
test_bug638596.html \
test_bug641466.html \
$(NULL)

View File

@ -0,0 +1,38 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=638596
-->
<head>
<title>Test for Bug 638596</title>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<script type="application/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=638596">Mozilla Bug 638596</a>
<p id="display"></p>
<div id="content">
<input type="password" style="font-size: 0">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 638596 **/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
var i = document.querySelector("input");
i.focus();
synthesizeKey("t", {});
synthesizeKey("e", {});
synthesizeKey("s", {});
synthesizeKey("t", {});
is(i.value, "test", "The correct value should be stored in the field");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>