mirror of
https://github.com/servo/servo.git
synced 2025-08-01 19:50:30 +01:00
layout: Add initial support for the ::marker
pseudo-element (#36317)
This change adds support for the `::marker` pseudo-element and ensure that markers are cached into the box tree. This is only initial support, there are a few things missing such as animations, transitions, and support the `content` CSS property. Testing: There are WPT tests for this change. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
a5c547259f
commit
2b63e60e8f
27 changed files with 282 additions and 276 deletions
|
@ -393,7 +393,7 @@ where
|
|||
is_list_item: false,
|
||||
},
|
||||
NonReplacedContents::OfPseudoElement(contents).into(),
|
||||
BoxSlot::dummy(),
|
||||
info.node.pseudo_element_box_slot(PseudoElement::Marker),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -405,7 +405,7 @@ where
|
|||
) {
|
||||
self.block_level_boxes.push(BlockLevelJob {
|
||||
info: info.clone(),
|
||||
box_slot: BoxSlot::dummy(),
|
||||
box_slot: info.node.pseudo_element_box_slot(PseudoElement::Marker),
|
||||
kind: BlockLevelCreator::OutsideMarker {
|
||||
contents,
|
||||
list_item_style,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue