aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/properties/data.py
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/properties/data.py')
-rw-r--r--components/style/properties/data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/properties/data.py b/components/style/properties/data.py
index 5b07f9c326a..38fb9b71c6d 100644
--- a/components/style/properties/data.py
+++ b/components/style/properties/data.py
@@ -270,12 +270,12 @@ class Longhand(object):
def base_type(self):
if self.predefined_type and not self.is_vector:
- return "::values::specified::{}".format(self.predefined_type)
+ return "crate::values::specified::{}".format(self.predefined_type)
return "longhands::{}::SpecifiedValue".format(self.ident)
def specified_type(self):
if self.predefined_type and not self.is_vector:
- ty = "::values::specified::{}".format(self.predefined_type)
+ ty = "crate::values::specified::{}".format(self.predefined_type)
else:
ty = "longhands::{}::SpecifiedValue".format(self.ident)
if self.boxed: