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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/text-match-document-change.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/paint/invalidation/text-match-document-change.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/text-match-document-change.html b/third_party/WebKit/LayoutTests/paint/invalidation/text-match-document-change.html
index 254a2dc299ee7fc6f39b4fd176762f384a54f863..1eefafca6bf76a40d4c5d1dcfaf20c5db8960272 100644
--- a/third_party/WebKit/LayoutTests/paint/invalidation/text-match-document-change.html
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/text-match-document-change.html
@@ -7,7 +7,7 @@ function highlightRange(id, start, end) {
var elem = frameWindow.document.getElementById(id).firstChild;
range.setStart(elem, start);
range.setEnd(elem, end);
- frameWindow.internals.addTextMatchMarker(range, false);
+ frameWindow.internals.addTextMatchMarker(range, 'Inactive');
}
function repaintTest() {

Powered by Google App Engine
This is Rietveld 408576698