зеркало из https://github.com/mozilla/pjs.git
Bug 450048 - "nsFind.cpp(961) : warning C4309: 'initializing' : truncation of constant value"; class/interface test; r+sr=jst
This commit is contained in:
Родитель
9813d8d8a7
Коммит
a8aae19ef6
|
@ -51,7 +51,7 @@ interface nsIFind : nsISupports
|
|||
* Use "find entire words" mode by setting to a word breaker
|
||||
* or null, to disable "entire words" mode.
|
||||
*/
|
||||
attribute nsIWordBreaker wordBreaker;
|
||||
[noscript] attribute nsIWordBreaker wordBreaker;
|
||||
|
||||
/**
|
||||
* Find some text in the current context. The implementation is
|
||||
|
@ -62,13 +62,9 @@ interface nsIFind : nsISupports
|
|||
* @param aStartPoint A Range specifying search start point.
|
||||
* If not collapsed, we'll start from
|
||||
* end (forward) or start (backward).
|
||||
* May be null; if so, we'll start at the start
|
||||
* (forward) or end (back) of aSearchRange.
|
||||
* @param aEndPoint A Range specifying search end point.
|
||||
* If not collapsed, we'll end at
|
||||
* end (forward) or start (backward).
|
||||
* May be null; if so, we'll end at the end
|
||||
* (forward) or start (back) of aSearchRange.
|
||||
* @retval A range spanning the match that was found (or null).
|
||||
*/
|
||||
nsIDOMRange Find(in wstring aPatText, in nsIDOMRange aSearchRange,
|
||||
|
|
|
@ -43,10 +43,11 @@ relativesrcdir = embedding/test
|
|||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
_TEST_FILES = test_bug293834.html \
|
||||
bug293834_form.html \
|
||||
$(NULL)
|
||||
_TEST_FILES = \
|
||||
test_bug293834.html \
|
||||
bug293834_form.html \
|
||||
test_nsFind.html \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(_TEST_FILES)
|
||||
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
||||
|
||||
|
|
|
@ -0,0 +1,128 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=450048
|
||||
-->
|
||||
<head>
|
||||
<title>Test for nsFind::Find()</title>
|
||||
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.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=450048">Mozilla Bug 450048</a>
|
||||
<p id="display">This is the text to search i<b>n­t</b>o</p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script type="application/javascript">
|
||||
|
||||
/** Test for Bug 450048 **/
|
||||
|
||||
// Check nsFind class and its nsIFind interface.
|
||||
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
|
||||
var rf = Components.classes["@mozilla.org/embedcomp/rangefind;1"]
|
||||
.getService(Components.interfaces.nsIFind);
|
||||
|
||||
var display = window.document.getElementById("display");
|
||||
var searchRange = window.document.createRange();
|
||||
searchRange.setStart(display, 0);
|
||||
searchRange.setEnd(display, display.childNodes.length);
|
||||
var startPt = searchRange;
|
||||
var endPt = searchRange;
|
||||
|
||||
// Check |null| detection on |aPatText| parameter.
|
||||
try {
|
||||
rf.Find(null, searchRange, startPt, endPt);
|
||||
|
||||
ok(false, "Missing NS_ERROR_NULL_POINTER exception");
|
||||
} catch (e if (e instanceof Components.interfaces.nsIException &&
|
||||
e.result == Components.results.NS_ERROR_NULL_POINTER)) {
|
||||
ok(true, null);
|
||||
}
|
||||
|
||||
// Check |null| detection on |aSearchRange| parameter.
|
||||
try {
|
||||
rf.Find("", null, startPt, endPt);
|
||||
|
||||
ok(false, "Missing NS_ERROR_ILLEGAL_VALUE exception");
|
||||
} catch (e if (e instanceof Components.interfaces.nsIException &&
|
||||
e.result == Components.results.NS_ERROR_ILLEGAL_VALUE)) {
|
||||
ok(true, null);
|
||||
}
|
||||
|
||||
// Check |null| detection on |aStartPoint| parameter.
|
||||
try {
|
||||
rf.Find("", searchRange, null, endPt);
|
||||
|
||||
ok(false, "Missing NS_ERROR_ILLEGAL_VALUE exception");
|
||||
} catch (e if (e instanceof Components.interfaces.nsIException &&
|
||||
e.result == Components.results.NS_ERROR_ILLEGAL_VALUE)) {
|
||||
ok(true, null);
|
||||
}
|
||||
|
||||
// Check |null| detection on |aEndPoint| parameter.
|
||||
try {
|
||||
rf.Find("", searchRange, startPt, null);
|
||||
|
||||
ok(false, "Missing NS_ERROR_ILLEGAL_VALUE exception");
|
||||
} catch (e if (e instanceof Components.interfaces.nsIException &&
|
||||
e.result == Components.results.NS_ERROR_ILLEGAL_VALUE)) {
|
||||
ok(true, null);
|
||||
}
|
||||
|
||||
var searchValue, retRange;
|
||||
|
||||
rf.findBackwards = false;
|
||||
|
||||
rf.caseSensitive = false;
|
||||
|
||||
searchValue = "TexT";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(retRange, "\"" + searchValue + "\" not found (not caseSensitive)");
|
||||
|
||||
rf.caseSensitive = true;
|
||||
|
||||
// searchValue = "TexT";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(!retRange, "\"" + searchValue + "\" found (caseSensitive)");
|
||||
|
||||
searchValue = "text";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(retRange, "\"" + searchValue + "\" not found");
|
||||
|
||||
// Matches |i<b>n­t</b>o|.
|
||||
searchValue = "into";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(retRange, "\"" + searchValue + "\" not found");
|
||||
|
||||
// Matches inside |search|.
|
||||
searchValue = "ear";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(retRange, "\"" + searchValue + "\" not found");
|
||||
|
||||
// Set new start point (to end of last search).
|
||||
startPt = retRange.endContainer.ownerDocument.createRange();
|
||||
startPt.setStart(retRange.endContainer, retRange.endOffset);
|
||||
startPt.setEnd(retRange.endContainer, retRange.endOffset);
|
||||
|
||||
searchValue = "t";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(retRange, "\"" + searchValue + "\" not found (forward)");
|
||||
|
||||
searchValue = "the";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(!retRange, "\"" + searchValue + "\" found (forward)");
|
||||
|
||||
rf.findBackwards = true;
|
||||
|
||||
// searchValue = "the";
|
||||
retRange = rf.Find(searchValue, searchRange, startPt, endPt);
|
||||
ok(retRange, "\"" + searchValue + "\" not found (backward)");
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче