mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4c3df3f153
--HG-- extra : rebase_source : 43e6b1193c5707313e06a4d0afa21bca03ab297b
40 lines
940 B
HTML
40 lines
940 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=597333
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 597333</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/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>
|
|
<p><a target="_blank" href="https://bugzilla.mozilla.org/show_bug?id=597333">Mozilla Bug 597333</a>
|
|
|
|
<textarea id="a">‮</textarea>
|
|
|
|
<pre id="test">
|
|
<script>
|
|
|
|
function runTests() {
|
|
var t = document.getElementById("a");
|
|
t.focus();
|
|
setTimeout(function() {
|
|
synthesizeKey('VK_RIGHT', {});
|
|
ok(true, "The browser did not crash!");
|
|
|
|
SimpleTest.finish();
|
|
}, 0);
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
SimpleTest.waitForFocus(runTests);
|
|
</script>
|
|
</pre>
|
|
|
|
</body>
|
|
</html>
|