summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug890580.html
blob: 808a4a868ee2804dd532214013943e81a87ea09d (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=890580
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 883129</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">
  function testPaintextSerializerWithPlaceHolder() {
    const de = SpecialPowers.Ci.nsIDocumentEncoder;
    const Cc = SpecialPowers.Cc;

    // Create a plaintext encoder with the flag OutputNonTextContentAsPlaceholder.
    var encoder = Cc["@mozilla.org/layout/documentEncoder;1?type=text/plain"]
                  .createInstance(de);
    var flags = de.OutputRaw |
                de.OutputNonTextContentAsPlaceholder;
    encoder.init(document, "text/plain", flags);

    function toPlaintext(id) {
      var element = document.getElementById(id);
      var range = document.createRange();
      range.selectNodeContents(element);
      encoder.setRange(range);
      return encoder.encodeToString();
    }

    // The follows are test cases.
    is(toPlaintext("case1"), "This is a button. Hello!", "test with <button>");
    is(toPlaintext("case2"), "There is an\uFFFCimage.", "test with <img>");
    is(toPlaintext("case3"), "\uFFFC with text.", "test with <input>");
    is(toPlaintext("case4"), "There is an\uFFFCimage and a \uFFFC.",
       "test with <img> and <input>");

    SimpleTest.finish();
  }

  addLoadEvent(testPaintextSerializerWithPlaceHolder);
  SimpleTest.waitForExplicitFinish();
  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=890580">Mozilla Bug 890580</a>
<p id="display"></p>
<div id="content" style="display: none">
  <span id="case1"><button id="b">This is a button.</button> Hello!</span>
  <span id="case2">There is an<img>image.</span>
  <span id="case3"><input type="button" value="Input button"> with text.</span>
  <span id="case4" contenteditable="true">There is an<img>image and
  a <input type="button" value="button">.</span>
</div>
<pre id="test">
</pre>
</body>
</html>