style: Take down the global animatable props list and use a kwarg instead

This commit is contained in:
Emilio Cobos Álvarez 2016-06-28 14:14:35 +00:00
parent 793de6dff2
commit faed3df594
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
25 changed files with 393 additions and 238 deletions

View file

@ -6,7 +6,7 @@
<% data.new_style_struct("Counters", inherited=False, gecko_name="Content") %>
<%helpers:longhand name="content">
<%helpers:longhand name="content" animatable="False">
use cssparser::Token;
use std::ascii::AsciiExt;
use values::computed::ComputedValueAsSpecified;
@ -171,7 +171,7 @@
}
</%helpers:longhand>
<%helpers:longhand name="counter-increment">
<%helpers:longhand name="counter-increment" animatable="False">
use std::fmt;
use super::content;
use values::computed::ComputedValueAsSpecified;
@ -241,7 +241,7 @@
}
</%helpers:longhand>
<%helpers:longhand name="counter-reset">
<%helpers:longhand name="counter-reset" animatable="False">
pub use super::counter_increment::{SpecifiedValue, computed_value, get_initial_value};
use super::counter_increment::{parse_common};