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

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

Issue 1771733002: Web Animations: Use of hyphens is no longer supported (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: warn if hyphenated property is present Created 4 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
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 2dd44519d98c395758ed42354a13ab1850bc75d7..7140d776cf06eb9c367e1336ede506d05704a07d 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -357,7 +357,7 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature)
return "Elements using the 'border-image' CSS property with no 'border-style' set should have no border, but currently do. Setting 'border-style' will be required in M51, around May 2016. See https://www.chromestatus.com/features/5542503914668032 for more details.";
case UseCounter::WebAnimationHyphenatedProperty:
- return replacedWillBeRemoved("Hyphenated naming in Web Animations keyframes", "camelCase", 51, "5650817352728576");
+ return "Hyphenated property naming in Web Animations keyframes is invalid and therefore ignored. Please use camelCase instead.";
alancutter (OOO until 2018) 2016/03/10 01:26:50 s/naming/names/ s/is/are/
Eric Willigers 2016/03/10 01:56:04 Done.
case UseCounter::PresentationConnectionStateChangeEventListener:
return replacedWillBeRemoved("'PresentationConnection.onstateachange'", "'PresentationConnection.on{connect,close,terminate}'", 51, "5662456714100736");

Powered by Google App Engine
This is Rietveld 408576698