summaryrefslogtreecommitdiffstats
path: root/embedding/test/test_bug499115.html
blob: c51dc61a8eef1014c7e9180f303e687c716f17de (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
<!DOCTYPE HTML>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=499115
-->
<head>
  <title>Test for Bug 499115</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body onload="onLoad();">
  <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=499115">Mozilla Bug 499115</a>
  <p id="display"></p>
  <div id="content" style="display: none">
  </div>
  <pre id="test">
    <script type="application/javascript">

      /** Test for Bug 499115 **/
      SimpleTest.waitForExplicitFinish();

      const SEARCH_TEXT="minefield";

      function getMatches() {
        var numMatches = 0;

        var searchRange = document.createRange();
        searchRange.selectNodeContents(document.body);

        var startPoint = searchRange.cloneRange();
        startPoint.collapse(true);

        var endPoint = searchRange.cloneRange();
        endPoint.collapse(false);

        var retRange = null;
        var finder = SpecialPowers.Cc["@mozilla.org/embedcomp/rangefind;1"]
                                  .createInstance(SpecialPowers.Ci.nsIFind);

        finder.caseSensitive = false;

        while ((retRange = finder.Find(SEARCH_TEXT, searchRange,
                                       startPoint, endPoint))) {
          numMatches++;

          // Start next search from end of current match
          startPoint = retRange.cloneRange();
          startPoint.collapse(false);
        }

        return numMatches;
       }

       function onLoad() {
         var matches = getMatches();
         is(matches, 2, "found second match in anonymous content");
         SimpleTest.finish();
       }
   </script>
  </pre>
<input type="text" value="minefield minefield"></body>
</html>