aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/properties/helpers/animated_properties.mako.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/properties/helpers/animated_properties.mako.rs')
-rw-r--r--components/style/properties/helpers/animated_properties.mako.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/components/style/properties/helpers/animated_properties.mako.rs b/components/style/properties/helpers/animated_properties.mako.rs
index 1af4268b32d..fd9596e5945 100644
--- a/components/style/properties/helpers/animated_properties.mako.rs
+++ b/components/style/properties/helpers/animated_properties.mako.rs
@@ -523,7 +523,6 @@ impl AnimationValue {
/// Construct an AnimationValue from a property declaration
pub fn from_declaration(decl: &PropertyDeclaration, context: &mut Context,
initial: &ComputedValues) -> Option<Self> {
- use error_reporting::create_error_reporter;
use properties::LonghandId;
use properties::DeclaredValue;
@@ -587,7 +586,6 @@ impl AnimationValue {
},
PropertyDeclaration::WithVariables(id, ref variables) => {
let custom_props = context.style().custom_properties();
- let reporter = create_error_reporter();
match id {
% for prop in data.longhands:
% if prop.animatable:
@@ -612,7 +610,6 @@ impl AnimationValue {
};
result = AnimationValue::from_declaration(&declaration, context, initial);
},
- &reporter,
quirks_mode);
result
},