Bug 1314790 - Part 2. Add test. r?masayuki draft
authorMakoto Kato <m_kato@ga2.so-net.ne.jp>
Sat, 12 Nov 2016 21:59:49 +0900
changeset 438167 6adb8338981c7654c3b9af2ab0f0ac46a9effb84
parent 438166 b22cd532b6072e19fe1bff7f90a0e4a4ae4236e1
child 536843 8e5b763b48eec5df1acb97818d85766fc334ecab
push id35638
push userm_kato@ga2.so-net.ne.jp
push dateMon, 14 Nov 2016 00:57:17 +0000
reviewersmasayuki
bugs1314790
milestone52.0a1
Bug 1314790 - Part 2. Add test. r?masayuki MozReview-Commit-ID: HcauemPpe4r
editor/libeditor/tests/mochitest.ini
editor/libeditor/tests/test_bug1314790.html
--- a/editor/libeditor/tests/mochitest.ini
+++ b/editor/libeditor/tests/mochitest.ini
@@ -207,16 +207,17 @@ skip-if = toolkit == 'android'
 [test_bug1248128.html]
 [test_bug1250010.html]
 [test_bug1257363.html]
 [test_bug1248185.html]
 [test_bug1258085.html]
 [test_bug1268736.html]
 [test_bug1310912.html]
 skip-if = toolkit == 'android' # bug 1315898
+[test_bug1314790.html]
 [test_bug1315065.html]
 
 [test_CF_HTML_clipboard.html]
 subsuite = clipboard
 [test_composition_event_created_in_chrome.html]
 [test_contenteditable_focus.html]
 [test_dom_input_event_on_htmleditor.html]
 skip-if = toolkit == 'android' # bug 1054087
new file mode 100644
--- /dev/null
+++ b/editor/libeditor/tests/test_bug1314790.html
@@ -0,0 +1,65 @@
+<!DOCTYPE html>
+<!--
+https://bugzilla.mozilla.org/show_bug.cgi?id=1314790
+-->
+<html>
+<head>
+  <title>Test for Bug 1314790</title>
+  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.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>
+<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1314790">Mozilla Bug 1314790</a>
+<p id="display"></p>
+<div id="content" style="display: none;">
+
+</div>
+
+<div contenteditable="true" id="contenteditable1"><p>pen pineapple</p></div>
+<pre id="test">
+
+<script class="testbody" type="application/javascript">
+SimpleTest.waitForExplicitFinish();
+SimpleTest.waitForFocus(function() {
+  let elm = document.getElementById("contenteditable1");
+  elm.focus();
+  window.getSelection().collapse(elm.childNodes[0], 0);
+
+  SpecialPowers.doCommand(window, "cmd_wordNext");
+  SpecialPowers.doCommand(window, "cmd_wordNext");
+
+  synthesizeKey("VK_RETURN", {});
+  synthesizeKey("a", {});
+  synthesizeKey("p", {});
+  synthesizeKey("p", {});
+  synthesizeKey("l", {});
+  synthesizeKey("e", {});
+  synthesizeKey(" ", {});
+  synthesizeKey("p", {});
+  synthesizeKey("e", {});
+  synthesizeKey("n", {});
+
+  ok(elm.childNodes[0].textContent == "pen pineapple",
+     "'pen pineapple' is first elment");
+  ok(elm.childNodes[1].textContent == "apple pen",
+     "'apple pen' is second elment");
+
+  SpecialPowers.doCommand(window, "cmd_deleteWordBackward");
+  SpecialPowers.doCommand(window, "cmd_deleteWordBackward");
+  ok(elm.childNodes[0].textContent == "pen pineapple",
+     "'pen pineapple' is first elment");
+
+  SpecialPowers.doCommand(window, "cmd_deleteWordBackward");
+  ok(elm.childNodes[0].textContent == "pen pineapple",
+     "'pen pineapple' is first elment");
+
+  SpecialPowers.doCommand(window, "cmd_deleteWordBackward");
+  ok(elm.childNodes[0].textContent == "pen ", "'pen ' is first elment");
+
+  SimpleTest.finish();
+});
+</script>
+</pre>
+</body>
+</html>