Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(598)

Unified Diff: third_party/WebKit/Source/web/tests/TextFinderTest.cpp

Issue 2537773008: Fix search restart after zero entries. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/TextFinder.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/TextFinderTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/TextFinderTest.cpp b/third_party/WebKit/Source/web/tests/TextFinderTest.cpp
index 534f3d874e6307ecbb9a71ab0f8409b68b75e358..9c26bfd0b6971a8d3363d3be16fb9209849a843d 100644
--- a/third_party/WebKit/Source/web/tests/TextFinderTest.cpp
+++ b/third_party/WebKit/Source/web/tests/TextFinderTest.cpp
@@ -508,6 +508,57 @@ TEST_F(TextFinderTest, FindTextJavaScriptUpdatesDOM) {
matchRects[1]);
}
+TEST_F(TextFinderTest, FindTextJavaScriptUpdatesDOMAfterNoMatches) {
+ document().body()->setInnerHTML("<b>XXXXYYYY</b><i></i>");
+ document().updateStyleAndLayout();
+
+ int identifier = 0;
+ WebString searchText(String("FindMe"));
+ WebFindOptions findOptions; // Default.
+ bool wrapWithinFrame = true;
+ bool activeNow = false;
+
+ textFinder().resetMatchCount();
+ textFinder().startScopingStringMatches(identifier, searchText, findOptions);
+ while (textFinder().scopingInProgress())
+ runPendingTasks();
+
+ findOptions.findNext = true;
+ ASSERT_FALSE(textFinder().find(identifier, searchText, findOptions,
+ wrapWithinFrame, &activeNow));
+ EXPECT_FALSE(activeNow);
+
+ // Add new text to DOM and try FindNext.
+ Element* iElement = toElement(document().body()->lastChild());
+ ASSERT_TRUE(iElement);
+ iElement->setInnerHTML("ZZFindMe");
+ document().updateStyleAndLayout();
+
+ ASSERT_TRUE(textFinder().find(identifier, searchText, findOptions,
+ wrapWithinFrame, &activeNow));
+ Range* activeMatch = textFinder().activeMatch();
+ ASSERT_TRUE(activeMatch);
+ EXPECT_FALSE(activeNow);
+ EXPECT_EQ(2, activeMatch->startOffset());
+ EXPECT_EQ(8, activeMatch->endOffset());
+
+ // Restart full search and check that added text is found.
+ findOptions.findNext = false;
+ textFinder().resetMatchCount();
+ textFinder().cancelPendingScopingEffort();
+ textFinder().startScopingStringMatches(identifier, searchText, findOptions);
+ while (textFinder().scopingInProgress())
+ runPendingTasks();
+ EXPECT_EQ(1, textFinder().totalMatchCount());
+
+ WebVector<WebFloatRect> matchRects;
+ textFinder().findMatchRects(matchRects);
+ ASSERT_EQ(1u, matchRects.size());
+ Node* textInIElement = document().body()->lastChild()->firstChild();
+ EXPECT_EQ(findInPageRect(textInIElement, 2, textInIElement, 8),
+ matchRects[0]);
+}
+
class TextFinderFakeTimerTest : public TextFinderTest {
protected:
void SetUp() override {
« no previous file with comments | « third_party/WebKit/Source/web/TextFinder.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698