summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug514156.html
blob: 3594d1c8d8b389a84c4c9b9c9f2bf8902d86b995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=514156
-->
<head>
  <title>Test for Bug 514156</title>
  <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>