mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Implement :visited handling for lazy pseudo-elements in stylo.
Part 2 of the fix for Gecko bug 1364242: https://bugzilla.mozilla.org/show_bug.cgi?id=1364242
This commit is contained in:
parent
351c7f7859
commit
52d1b59515
5 changed files with 134 additions and 47 deletions
|
@ -426,6 +426,7 @@ pub trait ThreadSafeLayoutElement: Clone + Copy + Sized + Debug +
|
||||||
&style_pseudo,
|
&style_pseudo,
|
||||||
RuleInclusion::All,
|
RuleInclusion::All,
|
||||||
data.styles.primary(),
|
data.styles.primary(),
|
||||||
|
/* is_probe = */ false,
|
||||||
&ServoMetricsProvider)
|
&ServoMetricsProvider)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.clone()
|
.clone()
|
||||||
|
|
|
@ -184,7 +184,7 @@ impl Default for CascadeInputs {
|
||||||
|
|
||||||
impl CascadeInputs {
|
impl CascadeInputs {
|
||||||
/// Construct inputs from previous cascade results, if any.
|
/// Construct inputs from previous cascade results, if any.
|
||||||
fn new_from_style(style: &Arc<ComputedValues>) -> Self {
|
pub fn new_from_style(style: &Arc<ComputedValues>) -> Self {
|
||||||
CascadeInputs {
|
CascadeInputs {
|
||||||
rules: style.rules.clone(),
|
rules: style.rules.clone(),
|
||||||
visited_rules: style.get_visited_style().and_then(|v| v.rules.clone()),
|
visited_rules: style.get_visited_style().and_then(|v| v.rules.clone()),
|
||||||
|
@ -204,6 +204,11 @@ impl CascadeInputs {
|
||||||
self.rules.as_mut()
|
self.rules.as_mut()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Gets a reference to the rule node, if any.
|
||||||
|
pub fn get_rules(&self) -> Option<&StrongRuleNode> {
|
||||||
|
self.rules.as_ref()
|
||||||
|
}
|
||||||
|
|
||||||
/// Gets a reference to the rule node. Panic if the element does not have
|
/// Gets a reference to the rule node. Panic if the element does not have
|
||||||
/// rule node.
|
/// rule node.
|
||||||
pub fn rules(&self) -> &StrongRuleNode {
|
pub fn rules(&self) -> &StrongRuleNode {
|
||||||
|
|
|
@ -166,7 +166,7 @@ impl CascadeVisitedMode {
|
||||||
/// Returns the computed values based on the cascade mode. In visited mode,
|
/// Returns the computed values based on the cascade mode. In visited mode,
|
||||||
/// visited values are only returned if they already exist. If they don't,
|
/// visited values are only returned if they already exist. If they don't,
|
||||||
/// we fallback to the regular, unvisited styles.
|
/// we fallback to the regular, unvisited styles.
|
||||||
fn values<'a>(&self, values: &'a Arc<ComputedValues>) -> &'a Arc<ComputedValues> {
|
pub fn values<'a>(&self, values: &'a Arc<ComputedValues>) -> &'a Arc<ComputedValues> {
|
||||||
if *self == CascadeVisitedMode::Visited && values.get_visited_style().is_some() {
|
if *self == CascadeVisitedMode::Visited && values.get_visited_style().is_some() {
|
||||||
return values.visited_style();
|
return values.visited_style();
|
||||||
}
|
}
|
||||||
|
@ -1211,8 +1211,10 @@ pub trait MatchMethods : TElement {
|
||||||
// Compute rule nodes for eagerly-cascaded pseudo-elements.
|
// Compute rule nodes for eagerly-cascaded pseudo-elements.
|
||||||
let mut matches_different_pseudos = false;
|
let mut matches_different_pseudos = false;
|
||||||
SelectorImpl::each_eagerly_cascaded_pseudo_element(|pseudo| {
|
SelectorImpl::each_eagerly_cascaded_pseudo_element(|pseudo| {
|
||||||
// For pseudo-elements, we only try to match visited rules if there
|
// For eager pseudo-elements, we only try to match visited rules if
|
||||||
// are also unvisited rules. (This matches Gecko's behavior.)
|
// there are also unvisited rules. (This matches Gecko's behavior
|
||||||
|
// for probing pseudo-elements, and for eager pseudo-elements Gecko
|
||||||
|
// does not try to resolve style if the probe says there isn't any.)
|
||||||
if visited_handling == VisitedHandlingMode::RelevantLinkVisited &&
|
if visited_handling == VisitedHandlingMode::RelevantLinkVisited &&
|
||||||
!context.cascade_inputs().pseudos.has(&pseudo) {
|
!context.cascade_inputs().pseudos.has(&pseudo) {
|
||||||
return
|
return
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
use {Atom, LocalName, Namespace};
|
use {Atom, LocalName, Namespace};
|
||||||
use applicable_declarations::{ApplicableDeclarationBlock, ApplicableDeclarationList};
|
use applicable_declarations::{ApplicableDeclarationBlock, ApplicableDeclarationList};
|
||||||
use bit_vec::BitVec;
|
use bit_vec::BitVec;
|
||||||
use context::QuirksMode;
|
use context::{CascadeInputs, QuirksMode};
|
||||||
use dom::TElement;
|
use dom::TElement;
|
||||||
use element_state::ElementState;
|
use element_state::ElementState;
|
||||||
use error_reporting::create_error_reporter;
|
use error_reporting::create_error_reporter;
|
||||||
|
@ -16,6 +16,7 @@ use font_metrics::FontMetricsProvider;
|
||||||
use gecko_bindings::structs::{nsIAtom, StyleRuleInclusion};
|
use gecko_bindings::structs::{nsIAtom, StyleRuleInclusion};
|
||||||
use invalidation::element::invalidation_map::InvalidationMap;
|
use invalidation::element::invalidation_map::InvalidationMap;
|
||||||
use invalidation::media_queries::EffectiveMediaQueryResults;
|
use invalidation::media_queries::EffectiveMediaQueryResults;
|
||||||
|
use matching::CascadeVisitedMode;
|
||||||
use media_queries::Device;
|
use media_queries::Device;
|
||||||
use properties::{self, CascadeFlags, ComputedValues};
|
use properties::{self, CascadeFlags, ComputedValues};
|
||||||
use properties::{AnimationRules, PropertyDeclarationBlock};
|
use properties::{AnimationRules, PropertyDeclarationBlock};
|
||||||
|
@ -27,7 +28,7 @@ use selector_parser::{SelectorImpl, PseudoElement};
|
||||||
use selectors::attr::NamespaceConstraint;
|
use selectors::attr::NamespaceConstraint;
|
||||||
use selectors::bloom::BloomFilter;
|
use selectors::bloom::BloomFilter;
|
||||||
use selectors::matching::{ElementSelectorFlags, matches_selector, MatchingContext, MatchingMode};
|
use selectors::matching::{ElementSelectorFlags, matches_selector, MatchingContext, MatchingMode};
|
||||||
use selectors::matching::AFFECTED_BY_PRESENTATIONAL_HINTS;
|
use selectors::matching::{VisitedHandlingMode, AFFECTED_BY_PRESENTATIONAL_HINTS};
|
||||||
use selectors::parser::{AncestorHashes, Combinator, Component, Selector, SelectorAndHashes};
|
use selectors::parser::{AncestorHashes, Combinator, Component, Selector, SelectorAndHashes};
|
||||||
use selectors::parser::{SelectorIter, SelectorMethods};
|
use selectors::parser::{SelectorIter, SelectorMethods};
|
||||||
use selectors::sink::Push;
|
use selectors::sink::Push;
|
||||||
|
@ -680,46 +681,89 @@ impl Stylist {
|
||||||
pseudo: &PseudoElement,
|
pseudo: &PseudoElement,
|
||||||
rule_inclusion: RuleInclusion,
|
rule_inclusion: RuleInclusion,
|
||||||
parent_style: &Arc<ComputedValues>,
|
parent_style: &Arc<ComputedValues>,
|
||||||
|
is_probe: bool,
|
||||||
font_metrics: &FontMetricsProvider)
|
font_metrics: &FontMetricsProvider)
|
||||||
-> Option<Arc<ComputedValues>>
|
-> Option<Arc<ComputedValues>>
|
||||||
where E: TElement,
|
where E: TElement,
|
||||||
{
|
{
|
||||||
let rule_node =
|
let cascade_inputs =
|
||||||
self.lazy_pseudo_rules(guards, element, pseudo, rule_inclusion);
|
self.lazy_pseudo_rules(guards, element, pseudo, is_probe, rule_inclusion);
|
||||||
self.compute_pseudo_element_style_with_rulenode(rule_node.as_ref(),
|
self.compute_pseudo_element_style_with_inputs(&cascade_inputs,
|
||||||
guards,
|
guards,
|
||||||
parent_style,
|
parent_style,
|
||||||
font_metrics)
|
font_metrics)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Computes a pseudo-element style lazily using the given rulenode. This
|
/// Computes a pseudo-element style lazily using the given CascadeInputs.
|
||||||
/// can be used for truly lazy pseudo-elements or to avoid redoing selector
|
/// This can be used for truly lazy pseudo-elements or to avoid redoing
|
||||||
/// matching for eager pseudo-elements when we need to recompute their style
|
/// selector matching for eager pseudo-elements when we need to recompute
|
||||||
/// with a new parent style.
|
/// their style with a new parent style.
|
||||||
pub fn compute_pseudo_element_style_with_rulenode(&self,
|
pub fn compute_pseudo_element_style_with_inputs(&self,
|
||||||
rule_node: Option<&StrongRuleNode>,
|
inputs: &CascadeInputs,
|
||||||
guards: &StylesheetGuards,
|
guards: &StylesheetGuards,
|
||||||
parent_style: &ComputedValues,
|
parent_style: &Arc<ComputedValues>,
|
||||||
font_metrics: &FontMetricsProvider)
|
font_metrics: &FontMetricsProvider)
|
||||||
-> Option<Arc<ComputedValues>>
|
-> Option<Arc<ComputedValues>>
|
||||||
{
|
{
|
||||||
let rule_node = match rule_node {
|
// We may have only visited rules in cases when we are actually
|
||||||
Some(rule_node) => rule_node,
|
// resolving, not probing, pseudo-element style.
|
||||||
None => return None
|
if !inputs.has_rules() && !inputs.has_visited_rules() {
|
||||||
|
return None
|
||||||
|
}
|
||||||
|
|
||||||
|
// We need to compute visited values if we have visited rules or if our
|
||||||
|
// parent has visited values.
|
||||||
|
let visited_values = if inputs.has_visited_rules() || parent_style.get_visited_style().is_some() {
|
||||||
|
// Slightly annoying: we know that inputs has either rules or
|
||||||
|
// visited rules, but we can't do inputs.rules() up front because
|
||||||
|
// maybe it just has visited rules, so can't unwrap_or.
|
||||||
|
let rule_node = match inputs.get_visited_rules() {
|
||||||
|
Some(rules) => rules,
|
||||||
|
None => inputs.rules()
|
||||||
|
};
|
||||||
|
// We want to use the visited bits (if any) from our parent style as
|
||||||
|
// our parent.
|
||||||
|
let mode = CascadeVisitedMode::Visited;
|
||||||
|
let inherited_style = mode.values(parent_style);
|
||||||
|
let computed =
|
||||||
|
properties::cascade(&self.device,
|
||||||
|
rule_node,
|
||||||
|
guards,
|
||||||
|
Some(inherited_style),
|
||||||
|
Some(inherited_style),
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
&create_error_reporter(),
|
||||||
|
font_metrics,
|
||||||
|
CascadeFlags::empty(),
|
||||||
|
self.quirks_mode);
|
||||||
|
|
||||||
|
Some(Arc::new(computed))
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
};
|
||||||
|
|
||||||
|
// We may not have non-visited rules, if we only had visited ones. In
|
||||||
|
// that case we want to use the root rulenode for our non-visited rules.
|
||||||
|
let root;
|
||||||
|
let rules = if let Some(rules) = inputs.get_rules() {
|
||||||
|
rules
|
||||||
|
} else {
|
||||||
|
root = self.rule_tree.root();
|
||||||
|
&root
|
||||||
};
|
};
|
||||||
|
|
||||||
// Read the comment on `precomputed_values_for_pseudo` to see why it's
|
// Read the comment on `precomputed_values_for_pseudo` to see why it's
|
||||||
// difficult to assert that display: contents nodes never arrive here
|
// difficult to assert that display: contents nodes never arrive here
|
||||||
// (tl;dr: It doesn't apply for replaced elements and such, but the
|
// (tl;dr: It doesn't apply for replaced elements and such, but the
|
||||||
// computed value is still "contents").
|
// computed value is still "contents").
|
||||||
// Bug 1364242: We need to add visited support for lazy pseudos
|
|
||||||
let computed =
|
let computed =
|
||||||
properties::cascade(&self.device,
|
properties::cascade(&self.device,
|
||||||
rule_node,
|
rules,
|
||||||
guards,
|
guards,
|
||||||
Some(parent_style),
|
Some(parent_style),
|
||||||
Some(parent_style),
|
Some(parent_style),
|
||||||
None,
|
visited_values,
|
||||||
None,
|
None,
|
||||||
&create_error_reporter(),
|
&create_error_reporter(),
|
||||||
font_metrics,
|
font_metrics,
|
||||||
|
@ -729,7 +773,7 @@ impl Stylist {
|
||||||
Some(Arc::new(computed))
|
Some(Arc::new(computed))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Computes the rule node for a lazily-cascaded pseudo-element.
|
/// Computes the cascade inputs for a lazily-cascaded pseudo-element.
|
||||||
///
|
///
|
||||||
/// See the documentation on lazy pseudo-elements in
|
/// See the documentation on lazy pseudo-elements in
|
||||||
/// docs/components/style.md
|
/// docs/components/style.md
|
||||||
|
@ -737,14 +781,15 @@ impl Stylist {
|
||||||
guards: &StylesheetGuards,
|
guards: &StylesheetGuards,
|
||||||
element: &E,
|
element: &E,
|
||||||
pseudo: &PseudoElement,
|
pseudo: &PseudoElement,
|
||||||
|
is_probe: bool,
|
||||||
rule_inclusion: RuleInclusion)
|
rule_inclusion: RuleInclusion)
|
||||||
-> Option<StrongRuleNode>
|
-> CascadeInputs
|
||||||
where E: TElement
|
where E: TElement
|
||||||
{
|
{
|
||||||
let pseudo = pseudo.canonical();
|
let pseudo = pseudo.canonical();
|
||||||
debug_assert!(pseudo.is_lazy());
|
debug_assert!(pseudo.is_lazy());
|
||||||
if self.pseudos_map.get(&pseudo).is_none() {
|
if self.pseudos_map.get(&pseudo).is_none() {
|
||||||
return None
|
return CascadeInputs::default()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply the selector flags. We should be in sequential mode
|
// Apply the selector flags. We should be in sequential mode
|
||||||
|
@ -777,7 +822,7 @@ impl Stylist {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Bug 1364242: We need to add visited support for lazy pseudos
|
let mut inputs = CascadeInputs::default();
|
||||||
let mut declarations = ApplicableDeclarationList::new();
|
let mut declarations = ApplicableDeclarationList::new();
|
||||||
let mut matching_context =
|
let mut matching_context =
|
||||||
MatchingContext::new(MatchingMode::ForStatelessPseudoElement,
|
MatchingContext::new(MatchingMode::ForStatelessPseudoElement,
|
||||||
|
@ -792,20 +837,53 @@ impl Stylist {
|
||||||
&mut declarations,
|
&mut declarations,
|
||||||
&mut matching_context,
|
&mut matching_context,
|
||||||
&mut set_selector_flags);
|
&mut set_selector_flags);
|
||||||
if declarations.is_empty() {
|
|
||||||
return None
|
if !declarations.is_empty() {
|
||||||
|
let rule_node = self.rule_tree.insert_ordered_rules_with_important(
|
||||||
|
declarations.into_iter().map(|a| a.order_and_level()),
|
||||||
|
guards);
|
||||||
|
if rule_node != self.rule_tree.root() {
|
||||||
|
inputs.set_rules(VisitedHandlingMode::AllLinksUnvisited,
|
||||||
|
rule_node);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if is_probe && !inputs.has_rules() {
|
||||||
|
// When probing, don't compute visited styles if we have no
|
||||||
|
// unvisited styles.
|
||||||
|
return inputs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if matching_context.relevant_link_found {
|
||||||
|
let mut declarations = ApplicableDeclarationList::new();
|
||||||
|
let mut matching_context =
|
||||||
|
MatchingContext::new_for_visited(MatchingMode::ForStatelessPseudoElement,
|
||||||
|
None,
|
||||||
|
VisitedHandlingMode::RelevantLinkVisited,
|
||||||
|
self.quirks_mode);
|
||||||
|
self.push_applicable_declarations(element,
|
||||||
|
Some(&pseudo),
|
||||||
|
None,
|
||||||
|
None,
|
||||||
|
AnimationRules(None, None),
|
||||||
|
rule_inclusion,
|
||||||
|
&mut declarations,
|
||||||
|
&mut matching_context,
|
||||||
|
&mut set_selector_flags);
|
||||||
|
if !declarations.is_empty() {
|
||||||
let rule_node =
|
let rule_node =
|
||||||
self.rule_tree.insert_ordered_rules_with_important(
|
self.rule_tree.insert_ordered_rules_with_important(
|
||||||
declarations.into_iter().map(|a| a.order_and_level()),
|
declarations.into_iter().map(|a| a.order_and_level()),
|
||||||
guards);
|
guards);
|
||||||
if rule_node == self.rule_tree.root() {
|
if rule_node != self.rule_tree.root() {
|
||||||
None
|
inputs.set_rules(VisitedHandlingMode::RelevantLinkVisited,
|
||||||
} else {
|
rule_node);
|
||||||
Some(rule_node)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
inputs
|
||||||
|
}
|
||||||
|
|
||||||
/// Set a given device, which may change the styles that apply to the
|
/// Set a given device, which may change the styles that apply to the
|
||||||
/// document.
|
/// document.
|
||||||
|
|
|
@ -10,7 +10,7 @@ use selectors::Element;
|
||||||
use std::env;
|
use std::env;
|
||||||
use std::fmt::Write;
|
use std::fmt::Write;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
use style::context::{QuirksMode, SharedStyleContext, StyleContext};
|
use style::context::{CascadeInputs, QuirksMode, SharedStyleContext, StyleContext};
|
||||||
use style::context::ThreadLocalStyleContext;
|
use style::context::ThreadLocalStyleContext;
|
||||||
use style::data::{ElementData, ElementStyles, RestyleData};
|
use style::data::{ElementData, ElementStyles, RestyleData};
|
||||||
use style::dom::{AnimationOnlyDirtyDescendants, DirtyDescendants};
|
use style::dom::{AnimationOnlyDirtyDescendants, DirtyDescendants};
|
||||||
|
@ -1550,13 +1550,13 @@ fn get_pseudo_style(
|
||||||
inherited_styles.unwrap_or(styles.primary());
|
inherited_styles.unwrap_or(styles.primary());
|
||||||
let guards = StylesheetGuards::same(guard);
|
let guards = StylesheetGuards::same(guard);
|
||||||
let metrics = get_metrics_provider_for_product();
|
let metrics = get_metrics_provider_for_product();
|
||||||
let rule_node = match styles.pseudos.get(&pseudo) {
|
let inputs = match styles.pseudos.get(&pseudo) {
|
||||||
Some(styles) => styles.rules.as_ref(),
|
Some(styles) => CascadeInputs::new_from_style(styles),
|
||||||
None => None,
|
None => return None,
|
||||||
};
|
};
|
||||||
doc_data.stylist
|
doc_data.stylist
|
||||||
.compute_pseudo_element_style_with_rulenode(
|
.compute_pseudo_element_style_with_inputs(
|
||||||
rule_node,
|
&inputs,
|
||||||
&guards,
|
&guards,
|
||||||
inherited_styles,
|
inherited_styles,
|
||||||
&metrics)
|
&metrics)
|
||||||
|
@ -1588,6 +1588,7 @@ fn get_pseudo_style(
|
||||||
&pseudo,
|
&pseudo,
|
||||||
rule_inclusion,
|
rule_inclusion,
|
||||||
base,
|
base,
|
||||||
|
is_probe,
|
||||||
&metrics)
|
&metrics)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue