mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Implement XUL tree pseudo style resolution for stylo.
This commit is contained in:
parent
915890af77
commit
2dc714f0ac
9 changed files with 172 additions and 10 deletions
|
@ -408,7 +408,8 @@ pub trait ThreadSafeLayoutElement: Clone + Copy + Sized + Debug +
|
|||
RuleInclusion::All,
|
||||
data.styles.primary(),
|
||||
/* is_probe = */ false,
|
||||
&ServoMetricsProvider)
|
||||
&ServoMetricsProvider,
|
||||
/* matching_func = */ None)
|
||||
.unwrap()
|
||||
.clone()
|
||||
}
|
||||
|
|
|
@ -109,6 +109,10 @@ where
|
|||
/// The current nesting level of selectors that we're matching.
|
||||
pub nesting_level: usize,
|
||||
|
||||
/// An optional hook function for checking whether a pseudo-element
|
||||
/// should match when matching_mode is ForStatelessPseudoElement.
|
||||
pub pseudo_element_matching_fn: Option<&'a Fn(&Impl::PseudoElement) -> bool>,
|
||||
|
||||
quirks_mode: QuirksMode,
|
||||
classes_and_ids_case_sensitivity: CaseSensitivity,
|
||||
_impl: ::std::marker::PhantomData<Impl>,
|
||||
|
@ -152,6 +156,7 @@ where
|
|||
classes_and_ids_case_sensitivity: quirks_mode.classes_and_ids_case_sensitivity(),
|
||||
scope_element: None,
|
||||
nesting_level: 0,
|
||||
pseudo_element_matching_fn: None,
|
||||
_impl: ::std::marker::PhantomData,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -387,9 +387,20 @@ where
|
|||
if context.nesting_level == 0 &&
|
||||
context.matching_mode == MatchingMode::ForStatelessPseudoElement {
|
||||
// Consume the pseudo.
|
||||
let pseudo = iter.next().unwrap();
|
||||
debug_assert!(matches!(*pseudo, Component::PseudoElement(..)),
|
||||
"Used MatchingMode::ForStatelessPseudoElement in a non-pseudo selector");
|
||||
match *iter.next().unwrap() {
|
||||
Component::PseudoElement(ref pseudo) => {
|
||||
if let Some(ref f) = context.pseudo_element_matching_fn {
|
||||
if !f(pseudo) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
debug_assert!(false,
|
||||
"Used MatchingMode::ForStatelessPseudoElement \
|
||||
in a non-pseudo selector");
|
||||
}
|
||||
}
|
||||
|
||||
// The only other parser-allowed Component in this sequence is a state
|
||||
// class. We just don't match in that case.
|
||||
|
|
|
@ -15,6 +15,7 @@ use gecko_bindings::structs::mozilla::css::ImageValue;
|
|||
use gecko_bindings::structs::mozilla::css::URLValue;
|
||||
use gecko_bindings::structs::mozilla::css::URLValueData;
|
||||
use gecko_bindings::structs::mozilla::AnonymousCounterStyle;
|
||||
use gecko_bindings::structs::mozilla::AtomArray;
|
||||
use gecko_bindings::structs::mozilla::MallocSizeOf;
|
||||
use gecko_bindings::structs::mozilla::OriginFlags;
|
||||
use gecko_bindings::structs::mozilla::UniquePtr;
|
||||
|
@ -2945,6 +2946,19 @@ extern "C" {
|
|||
set: RawServoStyleSetBorrowed)
|
||||
-> ServoStyleContextStrong;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Servo_ComputedValues_ResolveXULTreePseudoStyle(element:
|
||||
RawGeckoElementBorrowed,
|
||||
pseudo_tag:
|
||||
*mut nsAtom,
|
||||
inherited_style:
|
||||
ServoStyleContextBorrowed,
|
||||
input_word:
|
||||
*const AtomArray,
|
||||
set:
|
||||
RawServoStyleSetBorrowed)
|
||||
-> ServoStyleContextStrong;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Servo_SetExplicitStyle(element: RawGeckoElementBorrowed,
|
||||
primary_style: ServoStyleContextBorrowed);
|
||||
|
|
|
@ -1326,6 +1326,48 @@ impl PseudoElement {
|
|||
None
|
||||
}
|
||||
|
||||
/// Construct a tree pseudo-element from atom and args.
|
||||
#[inline]
|
||||
pub fn from_tree_pseudo_atom(atom: &Atom, args: Box<[Atom]>) -> Option<Self> {
|
||||
if atom == &atom!(":-moz-tree-column") {
|
||||
return Some(PseudoElement::MozTreeColumn(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-row") {
|
||||
return Some(PseudoElement::MozTreeRow(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-separator") {
|
||||
return Some(PseudoElement::MozTreeSeparator(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-cell") {
|
||||
return Some(PseudoElement::MozTreeCell(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-indentation") {
|
||||
return Some(PseudoElement::MozTreeIndentation(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-line") {
|
||||
return Some(PseudoElement::MozTreeLine(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-twisty") {
|
||||
return Some(PseudoElement::MozTreeTwisty(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-image") {
|
||||
return Some(PseudoElement::MozTreeImage(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-cell-text") {
|
||||
return Some(PseudoElement::MozTreeCellText(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-checkbox") {
|
||||
return Some(PseudoElement::MozTreeCheckbox(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-progressmeter") {
|
||||
return Some(PseudoElement::MozTreeProgressmeter(args));
|
||||
}
|
||||
if atom == &atom!(":-moz-tree-drop-feedback") {
|
||||
return Some(PseudoElement::MozTreeDropFeedback(args));
|
||||
}
|
||||
None
|
||||
}
|
||||
|
||||
/// Constructs an atom from a string of text, and whether we're in a
|
||||
/// user-agent stylesheet.
|
||||
///
|
||||
|
|
|
@ -4175,6 +4175,7 @@ pub mod root {
|
|||
pub struct ShortcutKeyCandidate {
|
||||
_unused: [u8; 0],
|
||||
}
|
||||
pub type AtomArray = root::nsTArray<root::RefPtr<root::nsAtom>>;
|
||||
/// EventStates is the class used to represent the event states of nsIContent
|
||||
/// instances. These states are calculated by IntrinsicState() and
|
||||
/// ContentStatesChanged() has to be called when one of them changes thus
|
||||
|
@ -22385,8 +22386,6 @@ pub mod root {
|
|||
pub struct nsAttrValue {
|
||||
pub mBits: usize,
|
||||
}
|
||||
pub type nsAttrValue_AtomArray =
|
||||
root::nsTArray<root::RefPtr<root::nsAtom>>;
|
||||
pub const nsAttrValue_ValueType_eSVGTypesBegin:
|
||||
root::nsAttrValue_ValueType =
|
||||
nsAttrValue_ValueType::eSVGAngle;
|
||||
|
|
|
@ -203,6 +203,19 @@ impl PseudoElement {
|
|||
None
|
||||
}
|
||||
|
||||
/// Construct a tree pseudo-element from atom and args.
|
||||
#[inline]
|
||||
pub fn from_tree_pseudo_atom(atom: &Atom, args: Box<[Atom]>) -> Option<Self> {
|
||||
% for pseudo in PSEUDOS:
|
||||
% if pseudo.is_tree_pseudo_element():
|
||||
if atom == &atom!("${pseudo.value}") {
|
||||
return Some(PseudoElement::${pseudo.capitalized()}(args));
|
||||
}
|
||||
% endif
|
||||
% endfor
|
||||
None
|
||||
}
|
||||
|
||||
/// Constructs an atom from a string of text, and whether we're in a
|
||||
/// user-agent stylesheet.
|
||||
///
|
||||
|
|
|
@ -817,13 +817,21 @@ impl Stylist {
|
|||
rule_inclusion: RuleInclusion,
|
||||
parent_style: &ComputedValues,
|
||||
is_probe: bool,
|
||||
font_metrics: &FontMetricsProvider
|
||||
font_metrics: &FontMetricsProvider,
|
||||
matching_fn: Option<&Fn(&PseudoElement) -> bool>,
|
||||
) -> Option<Arc<ComputedValues>>
|
||||
where
|
||||
E: TElement,
|
||||
{
|
||||
let cascade_inputs =
|
||||
self.lazy_pseudo_rules(guards, element, pseudo, is_probe, rule_inclusion);
|
||||
self.lazy_pseudo_rules(
|
||||
guards,
|
||||
element,
|
||||
pseudo,
|
||||
is_probe,
|
||||
rule_inclusion,
|
||||
matching_fn
|
||||
);
|
||||
self.compute_pseudo_element_style_with_inputs(
|
||||
&cascade_inputs,
|
||||
pseudo,
|
||||
|
@ -977,7 +985,8 @@ impl Stylist {
|
|||
element: &E,
|
||||
pseudo: &PseudoElement,
|
||||
is_probe: bool,
|
||||
rule_inclusion: RuleInclusion
|
||||
rule_inclusion: RuleInclusion,
|
||||
matching_fn: Option<&Fn(&PseudoElement) -> bool>,
|
||||
) -> CascadeInputs
|
||||
where
|
||||
E: TElement
|
||||
|
@ -1024,6 +1033,7 @@ impl Stylist {
|
|||
None,
|
||||
self.quirks_mode,
|
||||
);
|
||||
matching_context.pseudo_element_matching_fn = matching_fn;
|
||||
|
||||
self.push_applicable_declarations(
|
||||
element,
|
||||
|
@ -1060,6 +1070,7 @@ impl Stylist {
|
|||
VisitedHandlingMode::RelevantLinkVisited,
|
||||
self.quirks_mode,
|
||||
);
|
||||
matching_context.pseudo_element_matching_fn = matching_fn;
|
||||
|
||||
self.push_applicable_declarations(
|
||||
element,
|
||||
|
@ -1287,6 +1298,7 @@ impl Stylist {
|
|||
context.nth_index_cache.as_mut().map(|s| &mut **s),
|
||||
stylist.quirks_mode,
|
||||
);
|
||||
matching_context.pseudo_element_matching_fn = context.pseudo_element_matching_fn;
|
||||
|
||||
map.get_all_matching_rules(
|
||||
element,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue