style: parse the remaining animation longhands.

This commit is contained in:
Emilio Cobos Álvarez 2016-06-17 05:25:50 +02:00
parent f529786700
commit 818bc6d4a2
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
5 changed files with 94 additions and 3 deletions

View file

@ -949,6 +949,24 @@ ${helpers.single_keyword("overflow-x", "visible hidden scroll auto", need_clone=
impl ComputedValueAsSpecified for SpecifiedValue {}
</%helpers:longhand>
${helpers.keyword_list("animation-direction",
"normal reverse alternate alternate-reverse",
experimental=True)}
${helpers.keyword_list("animation-play-state",
"running paused",
experimental=True)}
${helpers.keyword_list("animation-fill-mode",
"none forwards backwards both",
experimental=True)}
<%helpers:longhand name="animation-delay" experimental="True">
pub use super::transition_duration::computed_value;
pub use super::transition_duration::{parse, get_initial_value};
pub use super::transition_duration::SpecifiedValue;
</%helpers:longhand>
// CSSOM View Module
// https://www.w3.org/TR/cssom-view-1/
${helpers.single_keyword("scroll-behavior",