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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2709443002: Selection API: addRange() should be ignored if there is an existing Range. (Closed)
Patch Set: . Created 3 years, 10 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/Source/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 79bdd6a332c584f4e1dd0701618b56c95911295e..86fb5c497dfb42031fc250d11f9a925027eb4728 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -418,10 +418,10 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
return willBeRemoved("\"zoom: document\"", M59, "4997605029314560");
case UseCounter::SelectionAddRangeIntersect:
- return willBeRemoved(
- "The behavior that Selection.addRange() merges existing Range and "
- "the specified Range",
- M58, "6680566019653632");
+ return "The behavior that Selection.addRange() merges existing Range and "
+ "the specified Range was removed. See "
+ "https://www.chromestatus.com/features/6680566019653632 for more "
+ "details.";
// Features that aren't deprecated don't have a deprecation message.
default:

Powered by Google App Engine
This is Rietveld 408576698