diff options
author | daisuke <daisuke@daisukenoMacBook-Pro.local> | 2017-05-29 16:11:44 +0900 |
---|---|---|
committer | daisuke <daisuke@daisukenoMacBook-Pro.local> | 2017-05-29 23:09:30 +0900 |
commit | 23e673f2a2d2e46989b06fc8f6cf5dfb5363deef (patch) | |
tree | a6c833369b4f5d95623d8a5f4ed6d7c27aa7d5c4 | |
parent | 3e37278d9e5639f185d59b50cff4937c3f66699a (diff) | |
download | servo-23e673f2a2d2e46989b06fc8f6cf5dfb5363deef.tar.gz servo-23e673f2a2d2e46989b06fc8f6cf5dfb5363deef.zip |
Implements ui related discrete animatable properties
-rw-r--r-- | components/style/properties/longhand/ui.mako.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/components/style/properties/longhand/ui.mako.rs b/components/style/properties/longhand/ui.mako.rs index a1e6b414cae..e06a6feb41c 100644 --- a/components/style/properties/longhand/ui.mako.rs +++ b/components/style/properties/longhand/ui.mako.rs @@ -28,13 +28,15 @@ ${helpers.single_keyword("-moz-user-select", "auto text none all element element ${helpers.single_keyword("-moz-window-dragging", "default drag no-drag", products="gecko", gecko_ffi_name="mWindowDragging", gecko_enum_prefix="StyleWindowDragging", - animation_value_type="none", + gecko_inexhaustive=True, + animation_value_type="discrete", spec="None (Nonstandard Firefox-only property)")} ${helpers.single_keyword("-moz-window-shadow", "none default menu tooltip sheet", products="gecko", gecko_ffi_name="mWindowShadow", gecko_constant_prefix="NS_STYLE_WINDOW_SHADOW", - animation_value_type="none", + gecko_inexhaustive=True, + animation_value_type="discrete", internal=True, spec="None (Nonstandard internal property)")} |