summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug676401.html
blob: 35653461aed671d34758fdad2aa1f92f29d9f17e (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=676401
-->
<head>
  <title>Test for Bug 676401</title>
  <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>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=676401">Mozilla Bug 676401</a>
<p id="display"></p>
<div id="content">
  <!-- we need a blockquote to test the "outdent" command -->
  <section>
    <blockquote> not editable </blockquote>
  </section>
  <section contenteditable>
    <blockquote> editable </blockquote>
  </section>
</div>

<pre id="test">
<script type="application/javascript">

/** Test for Bug 676401 **/
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(runTests);

var gBlock1, gBlock2;

var alwaysEnabledCommands = [
  "contentReadOnly",
  "copy",
  "cut",
  "enableInlineTableEditing",
  "enableObjectResizing",
  "insertBrOnReturn",
  "selectAll",
  "styleWithCSS",
];

function ensureNobodyHasFocus() {
  document.activeElement.blur();
}

function IsCommandEnabled(command) {
  ensureNobodyHasFocus();

  // non-editable div: should return false unless alwaysEnabled
  window.getSelection().selectAllChildren(gBlock1);
  is(
    document.queryCommandEnabled(command),
    alwaysEnabledCommands.includes(command) && document.queryCommandSupported(command),
     "'" + command + "' should not be enabled on a non-editable block."
  );

  // editable div: should return true if it's supported
  window.getSelection().selectAllChildren(gBlock2);
  is(
    document.queryCommandEnabled(command),
    document.queryCommandSupported(command),
    "'" + command + "' should be enabled on an editable block."
  );
}

function runTests() {
  var i, commands;
  gBlock1 = document.querySelector("#content section blockquote");
  gBlock2 = document.querySelector("#content [contenteditable] blockquote");

  // common commands: test with and without "styleWithCSS"
  commands = [
    "bold", "italic", "underline", "strikeThrough",
    "subscript", "superscript", "foreColor", "backColor", "hiliteColor",
    "fontName", "fontSize",
    "justifyLeft", "justifyCenter", "justifyRight", "justifyFull",
    "indent", "outdent",
    "insertOrderedList", "insertUnorderedList", "insertParagraph",
    "heading", "formatBlock",
    "contentReadOnly", "createLink",
    "decreaseFontSize", "increaseFontSize",
    "insertHTML", "insertHorizontalRule", "insertImage",
    "removeFormat", "selectAll", "styleWithCSS",
  ];
  document.execCommand("styleWithCSS", false, false);
  for (i = 0; i < commands.length; i++)
    IsCommandEnabled(commands[i]);
  document.execCommand("styleWithCSS", false, true);
  for (i = 0; i < commands.length; i++)
    IsCommandEnabled(commands[i]);

  // Mozilla-specific stuff
  commands = ["enableInlineTableEditing", "enableObjectResizing", "insertBrOnReturn"];
  for (i = 0; i < commands.length; i++)
    IsCommandEnabled(commands[i]);

  // These are privileged, and available only to chrome.
  ensureNobodyHasFocus();
  window.getSelection().selectAllChildren(gBlock2);
  commands = ["paste"];
  for (i = 0; i < commands.length; i++) {
    is(document.queryCommandEnabled(commands[i]), false,
       "Command should not be enabled for non-privileged code");
    is(SpecialPowers.wrap(document).queryCommandEnabled(commands[i]), true,
       "Command should be enabled for privileged code");
    is(document.execCommand(commands[i], false, false), false, "Should return false: " + commands[i]);
    is(SpecialPowers.wrap(document).execCommand(commands[i], false, false), true, "Should return true: " + commands[i]);
  }

  // delete/undo/redo -- we have to execute this commands because:
  //  * there's nothing to undo if we haven't modified the selection first
  //  * there's nothing to redo if we haven't undone something first
  commands = ["delete", "undo", "redo"];
  for (i = 0; i < commands.length; i++) {
    IsCommandEnabled(commands[i]);
    document.execCommand(commands[i], false, false);
  }

  // done
  SimpleTest.finish();
}

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