From efd23832116315034f65d8080c1c978692998ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 20 Jul 2017 21:38:58 -0700 Subject: [PATCH] servo: Merge #17804 - Add a comment about visited style inheritance (from emilio:visited-comment); r=jryans Source-Repo: https://github.com/servo/servo Source-Revision: 3c89486de233d7fe8c81050399b5fc15cf6941aa --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 8ba6e0209d48c16a147bffb4176c129c86f00748 --- servo/components/style/style_resolver.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/servo/components/style/style_resolver.rs b/servo/components/style/style_resolver.rs index bd3eb57f75bc..71598ab14d2a 100644 --- a/servo/components/style/style_resolver.rs +++ b/servo/components/style/style_resolver.rs @@ -474,6 +474,9 @@ where cascade_flags.insert(SKIP_ROOT_AND_ITEM_BASED_DISPLAY_FIXUP); } if cascade_visited.visited_dependent_only() { + // If this element is a link, we want its visited style to inherit + // from the regular style of its parent, because only the + // visitedness of the relevant link should influence style. if pseudo.is_some() || !self.element.is_link() { parent_style = parent_style.map(|s| { s.get_visited_style().unwrap_or(s)