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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/documentmarker-add-adjacent-text.html

Issue 2801483002: Add DocumentMarker::MatchStatus enum for text match markers (Closed)
Patch Set: Update tests Created 3 years, 8 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: third_party/WebKit/LayoutTests/fast/dom/documentmarker-add-adjacent-text.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/documentmarker-add-adjacent-text.html b/third_party/WebKit/LayoutTests/fast/dom/documentmarker-add-adjacent-text.html
index a90934120c3439e4fa9b49616469e84d52b56f3e..fe6fed7efc45a2c5f4f1bc2403f52214cbfbb738 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/documentmarker-add-adjacent-text.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/documentmarker-add-adjacent-text.html
@@ -20,8 +20,8 @@ rangeRight.setEnd(elt, 4);
if (!window.internals) {
alert('This test requires window.interals to run!');
} else {
- window.internals.addTextMatchMarker(rangeLeft, true);
- window.internals.addTextMatchMarker(rangeRight, true);
+ window.internals.addTextMatchMarker(rangeLeft, 'Active');
+ window.internals.addTextMatchMarker(rangeRight, 'Active');
shouldBe('window.internals.markerCountForNode(elt, "textmatch")', '2');
}

Powered by Google App Engine
This is Rietveld 408576698