style/dom.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5//! Types and traits used to access the DOM from style calculation.
6
7#![allow(unsafe_code)]
8#![deny(missing_docs)]
9
10use crate::applicable_declarations::ApplicableDeclarationBlock;
11use crate::context::SharedStyleContext;
12#[cfg(feature = "gecko")]
13use crate::context::UpdateAnimationsTasks;
14use crate::data::{ElementData, ElementDataMut, ElementDataRef};
15use crate::device::Device;
16use crate::properties::{AnimationDeclarations, ComputedValues, PropertyDeclarationBlock};
17use crate::selector_map::PrecomputedHashMap;
18use crate::selector_parser::{AttrValue, Lang, PseudoElement, RestyleDamage, SelectorImpl};
19use crate::shared_lock::{Locked, SharedRwLock};
20use crate::stylesheets::scope_rule::ImplicitScopeRoot;
21use crate::stylist::CascadeData;
22use crate::values::computed::Display;
23use crate::values::AtomIdent;
24use crate::{LocalName, Namespace, WeakAtom};
25use dom::ElementState;
26use selectors::matching::{ElementSelectorFlags, QuirksMode, VisitedHandlingMode};
27use selectors::sink::Push;
28use selectors::{Element as SelectorsElement, OpaqueElement};
29use servo_arc::{Arc, ArcBorrow};
30use smallvec::SmallVec;
31use std::fmt;
32use std::fmt::Debug;
33use std::hash::Hash;
34use std::ops::Deref;
35
36pub use style_traits::dom::OpaqueNode;
37
38/// Simple trait to provide basic information about the type of an element.
39///
40/// We avoid exposing the full type id, since computing it in the general case
41/// would be difficult for Gecko nodes.
42pub trait NodeInfo {
43 /// Whether this node is an element.
44 fn is_element(&self) -> bool;
45 /// Whether this node is a text node.
46 fn is_text_node(&self) -> bool;
47}
48
49/// A node iterator that only returns node that don't need layout.
50pub struct LayoutIterator<T>(pub T);
51
52impl<T, N> Iterator for LayoutIterator<T>
53where
54 T: Iterator<Item = N>,
55 N: NodeInfo,
56{
57 type Item = N;
58
59 fn next(&mut self) -> Option<N> {
60 loop {
61 let n = self.0.next()?;
62 // Filter out nodes that layout should ignore.
63 if n.is_text_node() || n.is_element() {
64 return Some(n);
65 }
66 }
67 }
68}
69
70/// An iterator over the DOM children of a node.
71pub struct DomChildren<N>(Option<N>);
72impl<N> Iterator for DomChildren<N>
73where
74 N: TNode,
75{
76 type Item = N;
77
78 fn next(&mut self) -> Option<N> {
79 let n = self.0.take()?;
80 self.0 = n.next_sibling();
81 Some(n)
82 }
83}
84
85/// An iterator over the DOM descendants of a node in pre-order.
86pub struct DomDescendants<N> {
87 previous: Option<N>,
88 scope: N,
89}
90
91impl<N> DomDescendants<N>
92where
93 N: TNode,
94{
95 /// Returns the next element ignoring all of our subtree.
96 #[inline]
97 pub fn next_skipping_children(&mut self) -> Option<N> {
98 let prev = self.previous.take()?;
99 self.previous = prev.next_in_preorder_skipping_children(self.scope);
100 self.previous
101 }
102}
103
104impl<N> Iterator for DomDescendants<N>
105where
106 N: TNode,
107{
108 type Item = N;
109
110 #[inline]
111 fn next(&mut self) -> Option<N> {
112 let prev = self.previous.take()?;
113 self.previous = prev.next_in_preorder(self.scope);
114 self.previous
115 }
116}
117
118/// The `TDocument` trait, to represent a document node.
119pub trait TDocument: Sized + Copy + Clone {
120 /// The concrete `TNode` type.
121 type ConcreteNode: TNode<ConcreteDocument = Self>;
122
123 /// Get this document as a `TNode`.
124 fn as_node(&self) -> Self::ConcreteNode;
125
126 /// Returns whether this document is an HTML document.
127 fn is_html_document(&self) -> bool;
128
129 /// Returns the quirks mode of this document.
130 fn quirks_mode(&self) -> QuirksMode;
131
132 /// Get a list of elements with a given ID in this document, sorted by
133 /// tree position.
134 ///
135 /// Can return an error to signal that this list is not available, or also
136 /// return an empty slice.
137 fn elements_with_id<'a>(
138 &self,
139 _id: &AtomIdent,
140 ) -> Result<&'a [<Self::ConcreteNode as TNode>::ConcreteElement], ()>
141 where
142 Self: 'a,
143 {
144 Err(())
145 }
146
147 /// This document's shared lock.
148 fn shared_lock(&self) -> &SharedRwLock;
149}
150
151/// The `TNode` trait. This is the main generic trait over which the style
152/// system can be implemented.
153pub trait TNode: Sized + Copy + Clone + Debug + NodeInfo + PartialEq {
154 /// The concrete `TElement` type.
155 type ConcreteElement: TElement<ConcreteNode = Self>;
156
157 /// The concrete `TDocument` type.
158 type ConcreteDocument: TDocument<ConcreteNode = Self>;
159
160 /// The concrete `TShadowRoot` type.
161 type ConcreteShadowRoot: TShadowRoot<ConcreteNode = Self>;
162
163 /// Get this node's parent node.
164 fn parent_node(&self) -> Option<Self>;
165
166 /// Get this node's first child.
167 fn first_child(&self) -> Option<Self>;
168
169 /// Get this node's last child.
170 fn last_child(&self) -> Option<Self>;
171
172 /// Get this node's previous sibling.
173 fn prev_sibling(&self) -> Option<Self>;
174
175 /// Get this node's next sibling.
176 fn next_sibling(&self) -> Option<Self>;
177
178 /// Get the owner document of this node.
179 fn owner_doc(&self) -> Self::ConcreteDocument;
180
181 /// Iterate over the DOM children of a node.
182 #[inline(always)]
183 fn dom_children(&self) -> DomChildren<Self> {
184 DomChildren(self.first_child())
185 }
186
187 /// Returns whether the node is attached to a document.
188 fn is_in_document(&self) -> bool;
189
190 /// Iterate over the DOM children of a node, in preorder.
191 #[inline(always)]
192 fn dom_descendants(&self) -> DomDescendants<Self> {
193 DomDescendants {
194 previous: Some(*self),
195 scope: *self,
196 }
197 }
198
199 /// Returns the next node after this one, in a pre-order tree-traversal of
200 /// the subtree rooted at scoped_to.
201 #[inline]
202 fn next_in_preorder(&self, scoped_to: Self) -> Option<Self> {
203 if let Some(c) = self.first_child() {
204 return Some(c);
205 }
206 self.next_in_preorder_skipping_children(scoped_to)
207 }
208
209 /// Returns the next node in tree order, skipping the children of the current node.
210 ///
211 /// This is useful when we know that a subtree cannot contain matches, allowing us
212 /// to skip entire subtrees during traversal.
213 #[inline]
214 fn next_in_preorder_skipping_children(&self, scoped_to: Self) -> Option<Self> {
215 let mut current = *self;
216 loop {
217 if current == scoped_to {
218 return None;
219 }
220
221 if let Some(s) = current.next_sibling() {
222 return Some(s);
223 }
224
225 debug_assert!(
226 current.parent_node().is_some(),
227 "Not a descendant of the scope?"
228 );
229 current = current.parent_node()?;
230 }
231 }
232
233 /// Returns the depth of this node in the DOM.
234 fn depth(&self) -> usize {
235 let mut depth = 0;
236 let mut curr = *self;
237 while let Some(parent) = curr.traversal_parent() {
238 depth += 1;
239 curr = parent.as_node();
240 }
241 depth
242 }
243
244 /// Get this node's parent element from the perspective of a restyle
245 /// traversal.
246 fn traversal_parent(&self) -> Option<Self::ConcreteElement>;
247
248 /// Get this node's parent element if present.
249 fn parent_element(&self) -> Option<Self::ConcreteElement> {
250 self.parent_node().and_then(|n| n.as_element())
251 }
252
253 /// Get this node's parent element, or shadow host if it's a shadow root.
254 fn parent_element_or_host(&self) -> Option<Self::ConcreteElement> {
255 let parent = self.parent_node()?;
256 if let Some(e) = parent.as_element() {
257 return Some(e);
258 }
259 if let Some(root) = parent.as_shadow_root() {
260 return Some(root.host());
261 }
262 None
263 }
264
265 /// Converts self into an `OpaqueNode`.
266 fn opaque(&self) -> OpaqueNode;
267
268 /// A debug id, only useful, mm... for debugging.
269 fn debug_id(self) -> usize;
270
271 /// Get this node as an element, if it's one.
272 fn as_element(&self) -> Option<Self::ConcreteElement>;
273
274 /// Get this node as a document, if it's one.
275 fn as_document(&self) -> Option<Self::ConcreteDocument>;
276
277 /// Get this node as a ShadowRoot, if it's one.
278 fn as_shadow_root(&self) -> Option<Self::ConcreteShadowRoot>;
279}
280
281/// Wrapper to output the subtree rather than the single node when formatting
282/// for Debug.
283pub struct ShowSubtree<N: TNode>(pub N);
284impl<N: TNode> Debug for ShowSubtree<N> {
285 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
286 writeln!(f, "DOM Subtree:")?;
287 fmt_subtree(f, &|f, n| write!(f, "{:?}", n), self.0, 1)
288 }
289}
290
291/// Wrapper to output the subtree along with the ElementData when formatting
292/// for Debug.
293pub struct ShowSubtreeData<N: TNode>(pub N);
294impl<N: TNode> Debug for ShowSubtreeData<N> {
295 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
296 writeln!(f, "DOM Subtree:")?;
297 fmt_subtree(f, &|f, n| fmt_with_data(f, n), self.0, 1)
298 }
299}
300
301/// Wrapper to output the subtree along with the ElementData and primary
302/// ComputedValues when formatting for Debug. This is extremely verbose.
303#[cfg(feature = "servo")]
304pub struct ShowSubtreeDataAndPrimaryValues<N: TNode>(pub N);
305#[cfg(feature = "servo")]
306impl<N: TNode> Debug for ShowSubtreeDataAndPrimaryValues<N> {
307 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
308 writeln!(f, "DOM Subtree:")?;
309 fmt_subtree(f, &|f, n| fmt_with_data_and_primary_values(f, n), self.0, 1)
310 }
311}
312
313fn fmt_with_data<N: TNode>(f: &mut fmt::Formatter, n: N) -> fmt::Result {
314 if let Some(el) = n.as_element() {
315 write!(
316 f,
317 "{:?} dd={} aodd={} data={:?}",
318 el,
319 el.has_dirty_descendants(),
320 el.has_animation_only_dirty_descendants(),
321 el.borrow_data(),
322 )
323 } else {
324 write!(f, "{:?}", n)
325 }
326}
327
328#[cfg(feature = "servo")]
329fn fmt_with_data_and_primary_values<N: TNode>(f: &mut fmt::Formatter, n: N) -> fmt::Result {
330 if let Some(el) = n.as_element() {
331 let dd = el.has_dirty_descendants();
332 let aodd = el.has_animation_only_dirty_descendants();
333 let data = el.borrow_data();
334 let values = data.as_ref().and_then(|d| d.styles.get_primary());
335 write!(
336 f,
337 "{:?} dd={} aodd={} data={:?} values={:?}",
338 el, dd, aodd, &data, values
339 )
340 } else {
341 write!(f, "{:?}", n)
342 }
343}
344
345fn fmt_subtree<F, N: TNode>(f: &mut fmt::Formatter, stringify: &F, n: N, indent: u32) -> fmt::Result
346where
347 F: Fn(&mut fmt::Formatter, N) -> fmt::Result,
348{
349 for _ in 0..indent {
350 write!(f, " ")?;
351 }
352 stringify(f, n)?;
353 if let Some(e) = n.as_element() {
354 for kid in e.traversal_children() {
355 writeln!(f, "")?;
356 fmt_subtree(f, stringify, kid, indent + 1)?;
357 }
358 }
359
360 Ok(())
361}
362
363/// The ShadowRoot trait.
364pub trait TShadowRoot: Sized + Copy + Clone + Debug + PartialEq {
365 /// The concrete node type.
366 type ConcreteNode: TNode<ConcreteShadowRoot = Self>;
367
368 /// Get this ShadowRoot as a node.
369 fn as_node(&self) -> Self::ConcreteNode;
370
371 /// Get the shadow host that hosts this ShadowRoot.
372 fn host(&self) -> <Self::ConcreteNode as TNode>::ConcreteElement;
373
374 /// Get the style data for this ShadowRoot.
375 fn style_data<'a>(&self) -> Option<&'a CascadeData>
376 where
377 Self: 'a;
378
379 /// Get the list of shadow parts for this shadow root.
380 fn parts<'a>(&self) -> &[<Self::ConcreteNode as TNode>::ConcreteElement]
381 where
382 Self: 'a,
383 {
384 &[]
385 }
386
387 /// Get a list of elements with a given ID in this shadow root, sorted by
388 /// tree position.
389 ///
390 /// Can return an error to signal that this list is not available, or also
391 /// return an empty slice.
392 fn elements_with_id<'a>(
393 &self,
394 _id: &AtomIdent,
395 ) -> Result<&'a [<Self::ConcreteNode as TNode>::ConcreteElement], ()>
396 where
397 Self: 'a,
398 {
399 Err(())
400 }
401
402 /// Get the implicit scope for a stylesheet in given index.
403 fn implicit_scope_for_sheet(&self, _sheet_index: usize) -> Option<ImplicitScopeRoot> {
404 None
405 }
406}
407
408/// The element trait, the main abstraction the style crate acts over.
409pub trait TElement:
410 Eq
411 + PartialEq
412 + Debug
413 + Hash
414 + Sized
415 + Copy
416 + Clone
417 + SelectorsElement<Impl = SelectorImpl>
418 + AttributeProvider
419{
420 /// The concrete node type.
421 type ConcreteNode: TNode<ConcreteElement = Self>;
422
423 /// A concrete children iterator type in order to iterate over the `Node`s.
424 ///
425 /// TODO(emilio): We should eventually replace this with the `impl Trait`
426 /// syntax.
427 type TraversalChildrenIterator: Iterator<Item = Self::ConcreteNode>;
428
429 /// Get this element as a node.
430 fn as_node(&self) -> Self::ConcreteNode;
431
432 /// A debug-only check that the device's owner doc matches the actual doc
433 /// we're the root of.
434 ///
435 /// Otherwise we may set document-level state incorrectly, like the root
436 /// font-size used for rem units.
437 fn owner_doc_matches_for_testing(&self, _: &Device) -> bool {
438 true
439 }
440
441 /// Whether this element should match user and content rules.
442 ///
443 /// We use this for Native Anonymous Content in Gecko.
444 fn matches_user_and_content_rules(&self) -> bool {
445 true
446 }
447
448 /// Get this node's parent element from the perspective of a restyle
449 /// traversal.
450 fn traversal_parent(&self) -> Option<Self> {
451 self.as_node().traversal_parent()
452 }
453
454 /// Get this node's children from the perspective of a restyle traversal.
455 fn traversal_children(&self) -> LayoutIterator<Self::TraversalChildrenIterator>;
456
457 /// Returns the parent element we should inherit from.
458 ///
459 /// This is pretty much always the parent element itself, except in the case
460 /// of Gecko's Native Anonymous Content, which uses the traversal parent
461 /// (i.e. the flattened tree parent) and which also may need to find the
462 /// closest non-NAC ancestor.
463 fn inheritance_parent(&self) -> Option<Self> {
464 self.parent_element()
465 }
466
467 /// Execute `f` for each anonymous content child (apart from ::before and
468 /// ::after) whose originating element is `self`.
469 fn each_anonymous_content_child<F>(&self, _f: F)
470 where
471 F: FnMut(Self),
472 {
473 }
474
475 /// Return whether this element is an element in the HTML namespace.
476 fn is_html_element(&self) -> bool;
477
478 /// Return whether this element is an element in the MathML namespace.
479 fn is_mathml_element(&self) -> bool;
480
481 /// Return whether this element is an element in the SVG namespace.
482 fn is_svg_element(&self) -> bool;
483
484 /// Return whether this element is an element in the XUL namespace.
485 fn is_xul_element(&self) -> bool {
486 false
487 }
488
489 /// Return whether this element is an HTML <video> or <audio> element.
490 fn is_html_media_element(&self) -> bool {
491 false
492 }
493
494 /// Returns the bloom filter for this element's subtree, used for fast
495 /// querySelector optimization by allowing subtrees to be skipped.
496 /// Each element's filter includes hashes for all of it's class names and
497 /// attribute names (not values), along with the names for all descendent
498 /// elements.
499 ///
500 /// The default implementation returns all bits set, meaning the bloom filter
501 /// never filters anything.
502 fn subtree_bloom_filter(&self) -> u64 {
503 u64::MAX
504 }
505
506 /// Check if this element's subtree may contain elements with the given bloom hash.
507 fn bloom_may_have_hash(&self, bloom_hash: u64) -> bool {
508 let bloom = self.subtree_bloom_filter();
509 (bloom & bloom_hash) == bloom_hash
510 }
511
512 /// Convert a 32-bit atom hash to a bloom filter value using k=2 hash functions.
513 /// This must match the C++ implementation of HashForBloomFilter in Element.cpp
514 fn hash_for_bloom_filter(hash: u32) -> u64 {
515 // On 32-bit platforms, we have 31 bits available + 1 tag bit.
516 // On 64-bit platforms, we have 63 bits available + 1 tag bit.
517 #[cfg(target_pointer_width = "32")]
518 const BLOOM_BITS: u32 = 31;
519
520 #[cfg(target_pointer_width = "64")]
521 const BLOOM_BITS: u32 = 63;
522
523 let mut filter = 1u64;
524 filter |= 1u64 << (1 + (hash % BLOOM_BITS));
525 filter |= 1u64 << (1 + ((hash >> 6) % BLOOM_BITS));
526 filter
527 }
528
529 /// Return the list of slotted nodes of this node.
530 fn slotted_nodes(&self) -> &[Self::ConcreteNode] {
531 &[]
532 }
533
534 /// Get this element's style attribute.
535 fn style_attribute(&self) -> Option<ArcBorrow<'_, Locked<PropertyDeclarationBlock>>>;
536
537 /// Get this element's SMIL override declarations.
538 fn smil_override(&self) -> Option<ArcBorrow<'_, Locked<PropertyDeclarationBlock>>> {
539 None
540 }
541
542 /// Get the combined animation and transition rules.
543 ///
544 /// FIXME(emilio): Is this really useful?
545 fn animation_declarations(&self, context: &SharedStyleContext) -> AnimationDeclarations {
546 if !self.may_have_animations() {
547 return Default::default();
548 }
549
550 AnimationDeclarations {
551 animations: self.animation_rule(context),
552 transitions: self.transition_rule(context),
553 }
554 }
555
556 /// Get this element's animation rule.
557 fn animation_rule(
558 &self,
559 _: &SharedStyleContext,
560 ) -> Option<Arc<Locked<PropertyDeclarationBlock>>>;
561
562 /// Get this element's transition rule.
563 fn transition_rule(
564 &self,
565 context: &SharedStyleContext,
566 ) -> Option<Arc<Locked<PropertyDeclarationBlock>>>;
567
568 /// Get this element's state, for non-tree-structural pseudos.
569 fn state(&self) -> ElementState;
570
571 /// Returns whether this element has a `part` attribute.
572 fn has_part_attr(&self) -> bool;
573
574 /// Returns whether this element exports any part from its shadow tree.
575 fn exports_any_part(&self) -> bool;
576
577 /// The ID for this element.
578 fn id(&self) -> Option<&WeakAtom>;
579
580 /// Internal iterator for the classes of this element.
581 fn each_class<F>(&self, callback: F)
582 where
583 F: FnMut(&AtomIdent);
584
585 /// Internal iterator for the classes of this element.
586 fn each_custom_state<F>(&self, callback: F)
587 where
588 F: FnMut(&AtomIdent);
589
590 /// Internal iterator for the part names of this element.
591 fn each_part<F>(&self, _callback: F)
592 where
593 F: FnMut(&AtomIdent),
594 {
595 }
596
597 /// Internal iterator for the attribute names of this element.
598 fn each_attr_name<F>(&self, callback: F)
599 where
600 F: FnMut(&LocalName);
601
602 /// Internal iterator for the part names that this element exports for a
603 /// given part name.
604 fn each_exported_part<F>(&self, _name: &AtomIdent, _callback: F)
605 where
606 F: FnMut(&AtomIdent),
607 {
608 }
609
610 /// Whether a given element may generate a pseudo-element.
611 ///
612 /// This is useful to avoid computing, for example, pseudo styles for
613 /// `::-first-line` or `::-first-letter`, when we know it won't affect us.
614 ///
615 /// TODO(emilio, bz): actually implement the logic for it.
616 fn may_generate_pseudo(&self, pseudo: &PseudoElement, _primary_style: &ComputedValues) -> bool {
617 // ::before/::after are always supported for now, though we could try to
618 // optimize out leaf elements.
619
620 // ::first-letter and ::first-line are only supported for block-inside
621 // things, and only in Gecko, not Servo. Unfortunately, Gecko has
622 // block-inside things that might have any computed display value due to
623 // things like fieldsets, legends, etc. Need to figure out how this
624 // should work.
625 debug_assert!(
626 pseudo.is_eager(),
627 "Someone called may_generate_pseudo with a non-eager pseudo."
628 );
629 true
630 }
631
632 /// Returns true if this element may have a descendant needing style processing.
633 ///
634 /// Note that we cannot guarantee the existence of such an element, because
635 /// it may have been removed from the DOM between marking it for restyle and
636 /// the actual restyle traversal.
637 fn has_dirty_descendants(&self) -> bool;
638
639 /// Returns whether state or attributes that may change style have changed
640 /// on the element, and thus whether the element has been snapshotted to do
641 /// restyle hint computation.
642 fn has_snapshot(&self) -> bool;
643
644 /// Returns whether the current snapshot if present has been handled.
645 fn handled_snapshot(&self) -> bool;
646
647 /// Flags this element as having handled already its snapshot.
648 unsafe fn set_handled_snapshot(&self);
649
650 /// Returns whether the element's styles are up-to-date after traversal
651 /// (i.e. in post traversal).
652 fn has_current_styles(&self, data: &ElementData) -> bool {
653 if self.has_snapshot() && !self.handled_snapshot() {
654 return false;
655 }
656
657 data.has_styles() &&
658 // TODO(hiro): When an animating element moved into subtree of
659 // contenteditable element, there remains animation restyle hints in
660 // post traversal. It's generally harmless since the hints will be
661 // processed in a next styling but ideally it should be processed soon.
662 //
663 // Without this, we get failures in:
664 // layout/style/crashtests/1383319.html
665 // layout/style/crashtests/1383001.html
666 //
667 // https://bugzilla.mozilla.org/show_bug.cgi?id=1389675 tracks fixing
668 // this.
669 !data.hint.has_non_animation_invalidations()
670 }
671
672 /// Flag that this element has a descendant for style processing.
673 ///
674 /// Only safe to call with exclusive access to the element.
675 unsafe fn set_dirty_descendants(&self);
676
677 /// Flag that this element has no descendant for style processing.
678 ///
679 /// Only safe to call with exclusive access to the element.
680 unsafe fn unset_dirty_descendants(&self);
681
682 /// Similar to the dirty_descendants but for representing a descendant of
683 /// the element needs to be updated in animation-only traversal.
684 fn has_animation_only_dirty_descendants(&self) -> bool {
685 false
686 }
687
688 /// Flag that this element has a descendant for animation-only restyle
689 /// processing.
690 ///
691 /// Only safe to call with exclusive access to the element.
692 unsafe fn set_animation_only_dirty_descendants(&self) {}
693
694 /// Flag that this element has no descendant for animation-only restyle processing.
695 ///
696 /// Only safe to call with exclusive access to the element.
697 unsafe fn unset_animation_only_dirty_descendants(&self) {}
698
699 /// Clear all bits related describing the dirtiness of descendants.
700 ///
701 /// In Gecko, this corresponds to the regular dirty descendants bit, the
702 /// animation-only dirty descendants bit, and the lazy frame construction
703 /// descendants bit.
704 unsafe fn clear_descendant_bits(&self) {
705 self.unset_dirty_descendants();
706 }
707
708 /// Returns true if this element is a visited link.
709 ///
710 /// Servo doesn't support visited styles yet.
711 fn is_visited_link(&self) -> bool {
712 false
713 }
714
715 /// Returns the pseudo-element implemented by this element, if any.
716 ///
717 /// Gecko traverses pseudo-elements during the style traversal, and we need
718 /// to know this so we can properly grab the pseudo-element style from the
719 /// parent element.
720 ///
721 /// Note that we still need to compute the pseudo-elements before-hand,
722 /// given otherwise we don't know if we need to create an element or not.
723 fn implemented_pseudo_element(&self) -> Option<PseudoElement> {
724 None
725 }
726
727 /// Atomically stores the number of children of this node that we will
728 /// need to process during bottom-up traversal.
729 fn store_children_to_process(&self, n: isize);
730
731 /// Atomically notes that a child has been processed during bottom-up
732 /// traversal. Returns the number of children left to process.
733 fn did_process_child(&self) -> isize;
734
735 /// Gets a reference to the ElementData container, or creates one.
736 ///
737 /// Unsafe because it can race to allocate and leak if not used with
738 /// exclusive access to the element.
739 unsafe fn ensure_data(&self) -> ElementDataMut<'_>;
740
741 /// Clears the element data reference, if any.
742 ///
743 /// Unsafe following the same reasoning as ensure_data.
744 unsafe fn clear_data(&self);
745
746 /// Whether there is an ElementData container.
747 fn has_data(&self) -> bool;
748
749 /// Immutably borrows the ElementData.
750 fn borrow_data(&self) -> Option<ElementDataRef<'_>>;
751
752 /// Mutably borrows the ElementData.
753 fn mutate_data(&self) -> Option<ElementDataMut<'_>>;
754
755 /// Whether we should skip any root- or item-based display property
756 /// blockification on this element. (This function exists so that Gecko
757 /// native anonymous content can opt out of this style fixup.)
758 fn skip_item_display_fixup(&self) -> bool;
759
760 /// In Gecko, element has a flag that represents the element may have
761 /// any type of animations or not to bail out animation stuff early.
762 /// Whereas Servo doesn't have such flag.
763 fn may_have_animations(&self) -> bool;
764
765 /// Creates a task to update various animation state on a given (pseudo-)element.
766 #[cfg(feature = "gecko")]
767 fn update_animations(
768 &self,
769 before_change_style: Option<Arc<ComputedValues>>,
770 tasks: UpdateAnimationsTasks,
771 );
772
773 /// Returns true if the element has relevant animations. Relevant
774 /// animations are those animations that are affecting the element's style
775 /// or are scheduled to do so in the future.
776 fn has_animations(&self, context: &SharedStyleContext) -> bool;
777
778 /// Returns true if the element has a CSS animation. The `context` and `pseudo_element`
779 /// arguments are only used by Servo, since it stores animations globally and pseudo-elements
780 /// are not in the DOM.
781 fn has_css_animations(
782 &self,
783 context: &SharedStyleContext,
784 pseudo_element: Option<PseudoElement>,
785 ) -> bool;
786
787 /// Returns true if the element has a CSS transition (including running transitions and
788 /// completed transitions). The `context` and `pseudo_element` arguments are only used
789 /// by Servo, since it stores animations globally and pseudo-elements are not in the DOM.
790 fn has_css_transitions(
791 &self,
792 context: &SharedStyleContext,
793 pseudo_element: Option<PseudoElement>,
794 ) -> bool;
795
796 /// Returns true if the element has animation restyle hints.
797 fn has_animation_restyle_hints(&self) -> bool {
798 let data = match self.borrow_data() {
799 Some(d) => d,
800 None => return false,
801 };
802 return data.hint.has_animation_hint();
803 }
804
805 /// Called when a highlight pseudo-element (::selection, ::highlight,
806 /// ::target-text) style is invalidated. These pseudos need explicit repaint
807 /// triggering since their styles are resolved lazily during painting.
808 fn note_highlight_pseudo_style_invalidated(&self) {}
809
810 /// The shadow root this element is a host of.
811 fn shadow_root(&self) -> Option<<Self::ConcreteNode as TNode>::ConcreteShadowRoot>;
812
813 /// The shadow root which roots the subtree this element is contained in.
814 fn containing_shadow(&self) -> Option<<Self::ConcreteNode as TNode>::ConcreteShadowRoot>;
815
816 /// If this element is not a pseudo-element, return self. Otherwise,
817 /// return the ultimate originating element [1]. This is the element
818 /// used to look up rules in the selector maps.
819 /// [1]: https://drafts.csswg.org/selectors-4/#ultimate-originating-element
820 fn ultimate_originating_element(&self) -> Self {
821 let mut cur = *self;
822 while cur.is_pseudo_element() {
823 cur = cur
824 .pseudo_element_originating_element()
825 .expect("Trying to collect rules for a detached pseudo-element")
826 }
827 cur
828 }
829
830 /// Executes the callback for each applicable style rule data which isn't
831 /// the main document's data (which stores UA / author rules).
832 ///
833 /// The element passed to the callback is the containing shadow host for the
834 /// data if it comes from Shadow DOM.
835 ///
836 /// Returns whether normal document author rules should apply.
837 ///
838 /// TODO(emilio): We could separate the invalidation data for elements
839 /// matching in other scopes to avoid over-invalidation.
840 fn each_applicable_non_document_style_rule_data<'a, F>(&self, mut f: F) -> bool
841 where
842 Self: 'a,
843 F: FnMut(&'a CascadeData, Self),
844 {
845 use crate::rule_collector::containing_shadow_ignoring_svg_use;
846
847 let target = self.ultimate_originating_element();
848 let matches_user_and_content_rules = target.matches_user_and_content_rules();
849 let mut doc_rules_apply = matches_user_and_content_rules;
850
851 // Use the same rules to look for the containing host as we do for rule
852 // collection.
853 if let Some(shadow) = containing_shadow_ignoring_svg_use(target) {
854 doc_rules_apply = false;
855 if let Some(data) = shadow.style_data() {
856 f(data, shadow.host());
857 }
858 }
859
860 if let Some(shadow) = target.shadow_root() {
861 if let Some(data) = shadow.style_data() {
862 f(data, shadow.host());
863 }
864 }
865
866 let mut current = target.assigned_slot();
867 while let Some(slot) = current {
868 // Slots can only have assigned nodes when in a shadow tree.
869 let shadow = slot.containing_shadow().unwrap();
870 if let Some(data) = shadow.style_data() {
871 if data.any_slotted_rule() {
872 f(data, shadow.host());
873 }
874 }
875 current = slot.assigned_slot();
876 }
877
878 if target.has_part_attr() {
879 if let Some(mut inner_shadow) = target.containing_shadow() {
880 loop {
881 let inner_shadow_host = inner_shadow.host();
882 match inner_shadow_host.containing_shadow() {
883 Some(shadow) => {
884 if let Some(data) = shadow.style_data() {
885 if data.any_part_rule() {
886 f(data, shadow.host())
887 }
888 }
889 // TODO: Could be more granular.
890 if !inner_shadow_host.exports_any_part() {
891 break;
892 }
893 inner_shadow = shadow;
894 },
895 None => {
896 // TODO(emilio): Should probably distinguish with
897 // MatchesDocumentRules::{No,Yes,IfPart} or something so that we could
898 // skip some work.
899 doc_rules_apply = matches_user_and_content_rules;
900 break;
901 },
902 }
903 }
904 }
905 }
906
907 doc_rules_apply
908 }
909
910 /// Returns true if one of the transitions needs to be updated on this element. We check all
911 /// the transition properties to make sure that updating transitions is necessary.
912 /// This method should only be called if might_needs_transitions_update returns true when
913 /// passed the same parameters.
914 #[cfg(feature = "gecko")]
915 fn needs_transitions_update(
916 &self,
917 before_change_style: &ComputedValues,
918 after_change_style: &ComputedValues,
919 ) -> bool;
920
921 /// Returns the value of the `xml:lang=""` attribute (or, if appropriate,
922 /// the `lang=""` attribute) on this element.
923 fn lang_attr(&self) -> Option<AttrValue>;
924
925 /// Returns whether this element's language matches the language tag
926 /// `value`. If `override_lang` is not `None`, it specifies the value
927 /// of the `xml:lang=""` or `lang=""` attribute to use in place of
928 /// looking at the element and its ancestors. (This argument is used
929 /// to implement matching of `:lang()` against snapshots.)
930 fn match_element_lang(&self, override_lang: Option<Option<AttrValue>>, value: &Lang) -> bool;
931
932 /// Returns whether this element is the main body element of the HTML
933 /// document it is on.
934 fn is_html_document_body_element(&self) -> bool;
935
936 /// Generate the proper applicable declarations due to presentational hints,
937 /// and insert them into `hints`.
938 fn synthesize_presentational_hints_for_legacy_attributes<V>(
939 &self,
940 visited_handling: VisitedHandlingMode,
941 hints: &mut V,
942 ) where
943 V: Push<ApplicableDeclarationBlock>;
944
945 /// Generate the proper applicable declarations due to view transition dynamic rules, and
946 /// insert them into `rules`.
947 /// https://drafts.csswg.org/css-view-transitions-1/#document-dynamic-view-transition-style-sheet
948 fn synthesize_view_transition_dynamic_rules<V>(&self, _rules: &mut V)
949 where
950 V: Push<ApplicableDeclarationBlock>,
951 {
952 }
953
954 /// Returns element's local name.
955 fn local_name(&self) -> &<SelectorImpl as selectors::parser::SelectorImpl>::BorrowedLocalName;
956
957 /// Returns element's namespace.
958 fn namespace(&self)
959 -> &<SelectorImpl as selectors::parser::SelectorImpl>::BorrowedNamespaceUrl;
960
961 /// Returns the size of the element to be used in container size queries.
962 /// This will usually be the size of the content area of the primary box,
963 /// but can be None if there is no box or if some axis lacks size containment.
964 fn query_container_size(
965 &self,
966 display: &Display,
967 ) -> euclid::default::Size2D<Option<app_units::Au>>;
968
969 /// Returns true if the element has all of specified selector flags.
970 fn has_selector_flags(&self, flags: ElementSelectorFlags) -> bool;
971
972 /// Returns the search direction for relative selector invalidation, if it is on the search path.
973 fn relative_selector_search_direction(&self) -> ElementSelectorFlags;
974
975 /// Returns the implicit scope root for given sheet index and host.
976 fn implicit_scope_for_sheet_in_shadow_root(
977 _opaque_host: OpaqueElement,
978 _sheet_index: usize,
979 ) -> Option<ImplicitScopeRoot> {
980 None
981 }
982
983 /// Compute the damage incurred by the change from the `_old` to `_new`.
984 fn compute_layout_damage(_old: &ComputedValues, _new: &ComputedValues) -> RestyleDamage {
985 Default::default()
986 }
987}
988
989/// The attribute provider trait
990pub trait AttributeProvider {
991 /// Return the value of the given custom attibute if it exists.
992 fn get_attr(&self, attr: &LocalName, namespace: &Namespace) -> Option<String>;
993}
994
995/// A set of the attributes used to compute a style that uses `attr()`
996pub type AttributeReferences = Option<Box<PrecomputedHashMap<LocalName, SmallVec<[Namespace; 1]>>>>;
997
998/// A data structure to keep track of the names queried from a provider.
999pub struct AttributeTracker<'a> {
1000 /// The element that queries for attributes.
1001 pub provider: &'a dyn AttributeProvider,
1002 /// The set of attributes we have queried.
1003 pub references: AttributeReferences,
1004}
1005
1006impl<'a> AttributeTracker<'a> {
1007 /// Construct a new attribute tracker trivially.
1008 pub fn new(provider: &'a dyn AttributeProvider) -> Self {
1009 Self {
1010 provider,
1011 references: None,
1012 }
1013 }
1014
1015 /// Consstruct a new dummy attribute tracker
1016 pub fn new_dummy() -> Self {
1017 Self {
1018 provider: &DummyAttributeProvider {},
1019 references: None,
1020 }
1021 }
1022
1023 /// Extract the queried references and consume self
1024 pub fn finalize(self) -> AttributeReferences {
1025 self.references
1026 }
1027
1028 /// Query the value and save the name of the attribtue.
1029 pub fn query(&mut self, name: &LocalName, namespace: &Namespace) -> Option<String> {
1030 // We need to save namespaces in case we are thinking of sharing this element's
1031 // style with another.
1032 // i.e if elment a has ns1::attr="blue"
1033 // and element b has ns2::attr="blue"
1034 // a and b can only share style if ns1 and ns2 resolve to the same namespace.
1035 self.references
1036 .get_or_insert_default()
1037 .entry(name.clone())
1038 .or_default()
1039 .push(namespace.clone());
1040 self.provider.get_attr(name, namespace)
1041 }
1042}
1043
1044/// A dummy AttributeProvider that returns none to any attribute query.
1045#[derive(Clone, Debug, PartialEq)]
1046struct DummyAttributeProvider;
1047
1048impl AttributeProvider for DummyAttributeProvider {
1049 fn get_attr(&self, _attr: &LocalName, _namespace: &Namespace) -> Option<String> {
1050 None
1051 }
1052}
1053
1054/// TNode and TElement aren't Send because we want to be careful and explicit
1055/// about our parallel traversal. However, there are certain situations
1056/// (including but not limited to the traversal) where we need to send DOM
1057/// objects to other threads.
1058///
1059/// That's the reason why `SendNode` exists.
1060#[derive(Clone, Debug, PartialEq)]
1061pub struct SendNode<N: TNode>(N);
1062unsafe impl<N: TNode> Send for SendNode<N> {}
1063impl<N: TNode> SendNode<N> {
1064 /// Unsafely construct a SendNode.
1065 pub unsafe fn new(node: N) -> Self {
1066 SendNode(node)
1067 }
1068}
1069impl<N: TNode> Deref for SendNode<N> {
1070 type Target = N;
1071 fn deref(&self) -> &N {
1072 &self.0
1073 }
1074}
1075
1076/// Same reason as for the existence of SendNode, SendElement does the proper
1077/// things for a given `TElement`.
1078#[derive(Debug, Eq, Hash, PartialEq)]
1079pub struct SendElement<E: TElement>(E);
1080unsafe impl<E: TElement> Send for SendElement<E> {}
1081impl<E: TElement> SendElement<E> {
1082 /// Unsafely construct a SendElement.
1083 pub unsafe fn new(el: E) -> Self {
1084 SendElement(el)
1085 }
1086}
1087impl<E: TElement> Deref for SendElement<E> {
1088 type Target = E;
1089 fn deref(&self) -> &E {
1090 &self.0
1091 }
1092}