diff options
author | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-06-17 04:07:26 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-06-28 15:09:53 +0000 |
commit | b6ecb1ccb1261e52cf0a72cc3f8fd3224bebd6ea (patch) | |
tree | 0913bad6861249f76a2fbcea48c3efb32809c690 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | c80084cd29a7ff25c1a544f8474733d7a126f54d (diff) | |
download | servo-b6ecb1ccb1261e52cf0a72cc3f8fd3224bebd6ea.tar.gz servo-b6ecb1ccb1261e52cf0a72cc3f8fd3224bebd6ea.zip |
style: Add animation-timing-function parsing as experimental.
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index f13bcfa4048..62baec54423 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -332,4 +332,6 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationName; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-duration; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationDuration; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-timing-function; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationTimingFunction; }; |