summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug514156.html
blob: 1331d62b121d67d7b4cb44784471ed6583c34ba2 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=514156
-->
<head>
  <title>Test for Bug 514156</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/WindowSnapshot.js"></script>
  <script 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();
  sendString("\u200e\u05d0\u05d1");
  is(escape(input1.value), escape("\u200e\u05d0\u05d1"), "non-spacing character and direction change shouldn't change content");

  var input2 = $("input2");
  input2.focus();
  sendString("\u05b6");
  sendString("abc");
  is(escape(input2.value), escape("\u05b6abc"), "non-spacing character and direction change shouldn't change content");

  SimpleTest.finish();
}

</script>
</pre>
</body>
</html>