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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/documentmarker-set-active.html

Issue 2897493002: Rename DMC::SetMarkersActive() to SetTextMatchMarkersActive() (Closed)
Patch Set: Revert change to rename whitelist file Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/dom/documentmarker-set-active.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/documentmarker-set-active.html b/third_party/WebKit/LayoutTests/fast/dom/documentmarker-set-active.html
index 04313239072405258131596c7083d7db3d17c92d..39d5a3d90baa41ad95920b055157bd8d4c358e31 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/documentmarker-set-active.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/documentmarker-set-active.html
@@ -19,16 +19,16 @@ if (!window.internals) {
} else {
window.internals.addTextMatchMarker(range, 'kInactive');
- window.internals.setMarkersActive(elt, 0, 1, true);
+ window.internals.setTextMatchMarkersActive(elt, 0, 1, true);
shouldBe('window.internals.activeMarkerCountForNode(elt)', '0');
- window.internals.setMarkersActive(elt, 1, 2, true);
+ window.internals.setTextMatchMarkersActive(elt, 1, 2, true);
shouldBe('window.internals.activeMarkerCountForNode(elt)', '1');
- window.internals.setMarkersActive(elt, 2, 3, false);
+ window.internals.setTextMatchMarkersActive(elt, 2, 3, false);
shouldBe('window.internals.activeMarkerCountForNode(elt)', '0');
- window.internals.setMarkersActive(elt, 3, 4, true);
+ window.internals.setTextMatchMarkersActive(elt, 3, 4, true);
shouldBe('window.internals.activeMarkerCountForNode(elt)', '0');
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/editing/markers/DocumentMarkerController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698