mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
style: Add animation-timing-function parsing as experimental.
This commit is contained in:
parent
c80084cd29
commit
b6ecb1ccb1
2 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -880,6 +880,12 @@ ${helpers.single_keyword("overflow-x", "visible hidden scroll auto", need_clone=
|
|||
pub use super::transition_duration::SpecifiedValue;
|
||||
</%helpers:longhand>
|
||||
|
||||
<%helpers:longhand name="animation-timing-function" experimental="True">
|
||||
pub use super::transition_timing_function::computed_value;
|
||||
pub use super::transition_timing_function::{parse, get_initial_value};
|
||||
pub use super::transition_timing_function::SpecifiedValue;
|
||||
</%helpers:longhand>
|
||||
|
||||
// CSSOM View Module
|
||||
// https://www.w3.org/TR/cssom-view-1/
|
||||
${helpers.single_keyword("scroll-behavior",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue