summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_inlineTableEditing.html
blob: 67bad2696559e84b69292f265ef8873ccc4230fb (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
<!DOCTYPE html>
<html>
<head>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none;">

</div>

<div id="editable1" contenteditable="true">
<table id="table1">
<tr id="tr1"><td>ABCDEFG</td><td>HIJKLMN</td></tr>
<tr id="tr2"><td>ABCDEFG</td><td>HIJKLMN</td></tr>
<tr id="tr3"><td>ABCDEFG</td><td>HIJKLMN</td></tr>
</table>
</div>
<pre id="test">

<script class="testbody" type="application/javascript">
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
  document.execCommand("enableObjectResizing", false, "false");
  document.execCommand("enableInlineTableEditing", false, "true");

  let tableNode = document.getElementById("table1");
  synthesizeMouseAtCenter(tableNode, {});
  isnot(tableNode.getAttribute("_moz_resizing"), "true",
         "_moz_resizing attribute shouldn't be true without object resizing");

  let tr2 = document.getElementById("tr2");
  ok(tr2, "id=tr2 should exist");
  synthesizeMouse(tr2, 0, tr2.clientHeight / 2, {});
  ok(!document.getElementById("tr2"),
     "id=tr2 should be removed by a click in the row");

  SimpleTest.finish();
});
</script>
</pre>
</body>
</html>