summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_cmd_increaseFont.html
blob: ab7b9ba766f3cfcc96088973b1d44291c088b95b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=767684
-->
<title>Test for Bug 767684</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=767684">Mozilla Bug 767684</a>
<div contenteditable>foo<b>bar</b>baz</div>
<script>
SimpleTest.waitForExplicitFinish();
(async () => {
  getSelection().selectAllChildren(document.querySelector("div"));
  SpecialPowers.doCommand(window, "cmd_increaseFont");
  is(
    document.querySelector("div").innerHTML,
    "<big>foo<b>bar</b>baz</big>",
    "All selected text must be embiggened"
  );
  SimpleTest.finish();
})();
</script>