mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
cf11344722
* * * Tests for bug 514156
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=514156
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 514156</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/WindowSnapshot.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 onload="test()">
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=514156">Mozilla Bug 514156</a>
|
|
<p id="display"></p>
|
|
<div id="content">
|
|
<input type="text" id="input1">
|
|
<input type="text" id="input2">
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
/** Test for Bug 514156 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function test() {
|
|
var input1 = $("input1");
|
|
input1.focus();
|
|
synthesizeKey("\u200e", { });
|
|
synthesizeKey("\u05d0", { });
|
|
synthesizeKey("\u05d1", { });
|
|
is(escape(input1.value), escape("\u200e\u05d0\u05d1"), "non-spacing character and direction change shouldn't change content");
|
|
|
|
var input2 = $("input2");
|
|
input2.focus();
|
|
synthesizeKey("\u05b6", { });
|
|
synthesizeKey("a", { });
|
|
synthesizeKey("b", { });
|
|
synthesizeKey("c", { });
|
|
is(escape(input2.value), escape("\u05b6abc"), "non-spacing character and direction change shouldn't change content");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|