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

Unified Diff: Source/core/frame/UseCounter.cpp

Issue 194173002: Undeprecate Event.returnValue and Attr.specified (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test expectations Created 6 years, 9 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 | « Source/core/events/Event.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/UseCounter.cpp
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp
index f8d9a2a3700008b8a14ed8306fe0087ebba0725a..5246be0e5018337127f4b5a879034eae552d8a8f 100644
--- a/Source/core/frame/UseCounter.cpp
+++ b/Source/core/frame/UseCounter.cpp
@@ -646,18 +646,12 @@ String UseCounter::deprecationMessage(Feature feature)
case FileError:
return "FileError is deprecated. Please use the 'name' or 'message' attributes of DOMError rather than 'code'.";
- case EventReturnValue:
- return "event.returnValue is deprecated. Please use the standard event.preventDefault() instead.";
-
case ShowModalDialog:
return "Chromium is considering deprecating showModalDialog. Please use window.open and postMessage instead.";
case CSSStyleSheetInsertRuleOptionalArg:
return "Calling CSSStyleSheet.insertRule() with one argument is deprecated. Please pass the index argument as well: insertRule(x, 0).";
- case AttributeSpecified:
- return "Attr.specified is deprecated. Its value is always true.";
-
case SVGElementGetPresentationAttribute:
return "CSSValue and SVGElement.getPresentationAttribute are deprecated. Please use getPropertyValue and parse the return value instead.";
« no previous file with comments | « Source/core/events/Event.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698