diff --git a/packages/blitz-dom/src/stylo.rs b/packages/blitz-dom/src/stylo.rs index 5fa88613..bffd235a 100644 --- a/packages/blitz-dom/src/stylo.rs +++ b/packages/blitz-dom/src/stylo.rs @@ -994,6 +994,18 @@ impl<'a> TElement for BlitzNode<'a> { .intersection(ElementSelectorFlags::RELATIVE_SELECTOR_SEARCH_DIRECTION_ANCESTOR_SIBLING) } + fn before_pseudo_element(&self) -> Option { + self.before.map(|id| self.with(id)) + } + + fn after_pseudo_element(&self) -> Option { + self.after.map(|id| self.with(id)) + } + + fn marker_pseudo_element(&self) -> Option { + None + } + // fn update_animations( // &self, // before_change_style: Option>,