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

Unified Diff: LayoutTests/editing/text-iterator/findString.html

Issue 26654011: Fixing TestRunner::findString() so as to fix findString.html editing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixing missed out cases Created 7 years, 2 months 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
Index: LayoutTests/editing/text-iterator/findString.html
diff --git a/LayoutTests/editing/text-iterator/findString.html b/LayoutTests/editing/text-iterator/findString.html
index dee87dc14e50ce5eebdafbec9bbeea3aef47571b..bd79c38b121e23ca64e86742026fdf8c148cdd5a 100644
--- a/LayoutTests/editing/text-iterator/findString.html
+++ b/LayoutTests/editing/text-iterator/findString.html
@@ -50,7 +50,7 @@
testFindString("cocoa", "co", [], [[0, 2], [2, 4], []]);
testFindString("cocoa", "co", ["AtWordStarts"], [[0, 2], []]);
- testFindString("webkit.org", "org", ["AtWordStarts"], [[]]);
+ testFindString("webkit.org", "org", ["AtWordStarts"], [[7, 10]]);
tkent 2013/10/17 23:31:30 Would you explain why we need this change in the C
testFindString("webkit.org", ".org", ["AtWordStarts"], [[6, 10], []]);
testFindString("webkit.org", "rg", ["AtWordStarts", "TreatMedialCapitalAsWordStart"], [[]]);

Powered by Google App Engine
This is Rietveld 408576698