From bc2ef519cafce26edc2088fea9627a43d816c3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 30 Dec 2017 22:38:45 +0100 Subject: [PATCH] style: Renumber CascadeFlags bits. --- components/style/properties/properties.mako.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/style/properties/properties.mako.rs b/components/style/properties/properties.mako.rs index 3faf1f03901..12750e33b2a 100644 --- a/components/style/properties/properties.mako.rs +++ b/components/style/properties/properties.mako.rs @@ -3081,11 +3081,11 @@ bitflags! { /// Whether we're computing the style of a link, either visited or /// unvisited. - const IS_LINK = 1 << 6; + const IS_LINK = 1 << 4; /// Whether we're computing the style of a link element that happens to /// be visited. - const IS_VISITED_LINK = 1 << 7; + const IS_VISITED_LINK = 1 << 5; } }