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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationInputHelpers.h

Issue 1851003002: Throw TypeError if easing string is invalid. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix "liner"->"linear" typo in ui/file_manager js file Created 4 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/Source/core/animation/AnimationInputHelpers.h
diff --git a/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h b/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
index 7237abc32df5ab6f20d90e6943d02d2368f66a5f..1fbbc14a3783bb27f2f9be9453892ba57bdab896 100644
--- a/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
+++ b/third_party/WebKit/Source/core/animation/AnimationInputHelpers.h
@@ -12,6 +12,7 @@
namespace blink {
class Element;
+class ExceptionState;
class TimingFunction;
class QualifiedName;
@@ -21,7 +22,7 @@ public:
static CSSPropertyID keyframeAttributeToCSSProperty(const String&, const Document&);
static CSSPropertyID keyframeAttributeToPresentationAttribute(const String&, const Element&);
static const QualifiedName* keyframeAttributeToSVGAttribute(const String&, Element&);
- static PassRefPtr<TimingFunction> parseTimingFunction(const String&, Document*);
+ static PassRefPtr<TimingFunction> parseTimingFunction(const String&, Document*, ExceptionState&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698