Index: Source/core/html/HTMLAnchorElement.cpp |
diff --git a/Source/core/html/HTMLAnchorElement.cpp b/Source/core/html/HTMLAnchorElement.cpp |
index 789bc483e77c920c60c7daca44b4cd2c3ee921a5..4eae762530c28af77d661984db93efc8023c749e 100644 |
--- a/Source/core/html/HTMLAnchorElement.cpp |
+++ b/Source/core/html/HTMLAnchorElement.cpp |
@@ -196,7 +196,7 @@ void HTMLAnchorElement::parseAttribute(const QualifiedName& name, const AtomicSt |
AffectedSelectorMask affectedPseudo = AffectedSelectorLink | AffectedSelectorVisited; |
if (wasLink != isLink()) |
affectedPseudo |= AffectedSelectorEnabled; |
- didAffectSelector(affectedPseudo); |
+ didAffectSelector(StyleChangeReasonForTracing::createWithExtraData(StyleChangeReason::PseudoClass, StyleChangeExtraData::LinkVisitedEnabled), affectedPseudo); |
} |
if (wasLink && !isLink() && treeScope().adjustedFocusedElement() == this) { |
// We might want to call blur(), but it's dangerous to dispatch |