diff options
Diffstat (limited to 'components/style/properties/gecko.mako.rs')
-rw-r--r-- | components/style/properties/gecko.mako.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/properties/gecko.mako.rs b/components/style/properties/gecko.mako.rs index ede7eac91a7..e6f1c42e31a 100644 --- a/components/style/properties/gecko.mako.rs +++ b/components/style/properties/gecko.mako.rs @@ -2808,7 +2808,7 @@ fn static_assert() { if atom.is_empty() { AnimationName(None) } else { - AnimationName(Some(KeyframesName::from_ident(atom.to_string()))) + AnimationName(Some(KeyframesName::from_ident(&atom.to_string()))) } } pub fn copy_animation_name_from(&mut self, other: &Self) { |