mirror of
https://github.com/servo/servo.git
synced 2025-06-20 07:08:59 +01:00
Implements xul related discrete animatable properties
This commit is contained in:
parent
1a915fa07c
commit
545a7420c8
1 changed files with 8 additions and 4 deletions
|
@ -19,7 +19,8 @@ ${helpers.single_keyword("-moz-box-align", "stretch start center baseline end",
|
||||||
${helpers.single_keyword("-moz-box-direction", "normal reverse",
|
${helpers.single_keyword("-moz-box-direction", "normal reverse",
|
||||||
products="gecko", gecko_ffi_name="mBoxDirection",
|
products="gecko", gecko_ffi_name="mBoxDirection",
|
||||||
gecko_enum_prefix="StyleBoxDirection",
|
gecko_enum_prefix="StyleBoxDirection",
|
||||||
animation_value_type="none",
|
gecko_inexhaustive=True,
|
||||||
|
animation_value_type="discrete",
|
||||||
alias="-webkit-box-direction",
|
alias="-webkit-box-direction",
|
||||||
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/box-direction)")}
|
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/box-direction)")}
|
||||||
|
|
||||||
|
@ -33,21 +34,24 @@ ${helpers.single_keyword("-moz-box-orient", "horizontal vertical",
|
||||||
products="gecko", gecko_ffi_name="mBoxOrient",
|
products="gecko", gecko_ffi_name="mBoxOrient",
|
||||||
extra_gecko_aliases="inline-axis=horizontal block-axis=vertical",
|
extra_gecko_aliases="inline-axis=horizontal block-axis=vertical",
|
||||||
gecko_enum_prefix="StyleBoxOrient",
|
gecko_enum_prefix="StyleBoxOrient",
|
||||||
animation_value_type="none",
|
gecko_inexhaustive=True,
|
||||||
|
animation_value_type="discrete",
|
||||||
alias="-webkit-box-orient",
|
alias="-webkit-box-orient",
|
||||||
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/box-orient)")}
|
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/box-orient)")}
|
||||||
|
|
||||||
${helpers.single_keyword("-moz-box-pack", "start center end justify",
|
${helpers.single_keyword("-moz-box-pack", "start center end justify",
|
||||||
products="gecko", gecko_ffi_name="mBoxPack",
|
products="gecko", gecko_ffi_name="mBoxPack",
|
||||||
gecko_enum_prefix="StyleBoxPack",
|
gecko_enum_prefix="StyleBoxPack",
|
||||||
animation_value_type="none",
|
gecko_inexhaustive=True,
|
||||||
|
animation_value_type="discrete",
|
||||||
alias="-webkit-box-pack",
|
alias="-webkit-box-pack",
|
||||||
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/box-pack)")}
|
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/box-pack)")}
|
||||||
|
|
||||||
${helpers.single_keyword("-moz-stack-sizing", "stretch-to-fit ignore ignore-horizontal ignore-vertical",
|
${helpers.single_keyword("-moz-stack-sizing", "stretch-to-fit ignore ignore-horizontal ignore-vertical",
|
||||||
products="gecko", gecko_ffi_name="mStackSizing",
|
products="gecko", gecko_ffi_name="mStackSizing",
|
||||||
gecko_enum_prefix="StyleStackSizing",
|
gecko_enum_prefix="StyleStackSizing",
|
||||||
animation_value_type="none",
|
gecko_inexhaustive=True,
|
||||||
|
animation_value_type="discrete",
|
||||||
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-stack-sizing)")}
|
spec="Nonstandard (https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-stack-sizing)")}
|
||||||
|
|
||||||
${helpers.predefined_type("-moz-box-ordinal-group", "Integer", "0",
|
${helpers.predefined_type("-moz-box-ordinal-group", "Integer", "0",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue