From 79fc59c75f76de0b0b26a492e93418e0b3ed4823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 4 Apr 2019 11:35:33 +0000 Subject: [PATCH] style: Use only the new name for StyleColor. That is, change all uses of StyleComplexColor to just StyleColor. Differential Revision: https://phabricator.services.mozilla.com/D25977 --- components/style/properties/properties.mako.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/properties/properties.mako.rs b/components/style/properties/properties.mako.rs index db9fb9fbd3b..5390c8e8270 100644 --- a/components/style/properties/properties.mako.rs +++ b/components/style/properties/properties.mako.rs @@ -1293,7 +1293,7 @@ impl LonghandId { /// /// In Gecko, there are some properties still that compute currentcolor /// down to an RGBA color at computed value time, instead of as - /// `StyleComplexColor`s. For these properties, we must return `false`, + /// `StyleColor`s. For these properties, we must return `false`, /// so that we correctly avoid caching style data in the rule tree. pub fn stores_complex_colors_lossily(&self) -> bool { % if product == "gecko":