mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Rename animatable to animation_type.
animation_type takes following values: animation_type="none" for non-animatable properties animation_type="normal" for animatable properties animation_type="discrete" for animatable but discrete type of animations We use string value to distinguish the case where no animation_type is specified. animation_type="discrete" will be used in a subsequent patch to make a property animatable as discrete type.
This commit is contained in:
parent
3beaa8d2e9
commit
03d354afba
24 changed files with 251 additions and 246 deletions
|
@ -7,12 +7,12 @@
|
|||
<% data.new_style_struct("Table", inherited=False) %>
|
||||
|
||||
${helpers.single_keyword("table-layout", "auto fixed",
|
||||
gecko_ffi_name="mLayoutStrategy", animatable=False,
|
||||
gecko_ffi_name="mLayoutStrategy", animation_type="none",
|
||||
spec="https://drafts.csswg.org/css-tables/#propdef-table-layout")}
|
||||
|
||||
<%helpers:longhand name="-x-span" products="gecko"
|
||||
spec="Internal-only (for `<col span>` pres attr)"
|
||||
animatable="False"
|
||||
animation_type="none"
|
||||
internal="True">
|
||||
use values::HasViewportPercentage;
|
||||
use values::computed::ComputedValueAsSpecified;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue