mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
This excludes dom/, otherwise the file size is too large for phabricator to handle. This is an autogenerated commit to handle scripts loading mochitest harness files, in the simple case where the script src is on the same line as the tag. This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170 using the `--part 2` argument. Differential Revision: https://phabricator.services.mozilla.com/D27456 --HG-- extra : moz-landing-system : lando
66 lines
2 KiB
HTML
66 lines
2 KiB
HTML
<!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 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>
|