RESOLVED FIXED 218894
Support more properties on ::marker
https://bugs.webkit.org/show_bug.cgi?id=218894
Summary Support more properties on ::marker
Antoine Quint
Reported 2020-11-13 02:28:43 PST
Support more properties on ::marker
Attachments
Patch (7.78 KB, patch)
2020-11-13 02:30 PST, Antoine Quint
no flags
Patch (9.81 KB, patch)
2020-11-13 05:22 PST, Antoine Quint
koivisto: review+
Antoine Quint
Comment 1 2020-11-13 02:30:40 PST
Antti Koivisto
Comment 2 2020-11-13 04:48:25 PST
Comment on attachment 414020 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=414020&action=review > Source/WebCore/css/html.css:305 > ::marker { You could add a comment here saying that the ::before/::after are handled by computeMarkerStyle. > Source/WebCore/rendering/RenderListItem.cpp:75 > RenderStyle parentStyle = RenderStyle::clone(style()); > auto fontDescription = style().fontDescription(); > - fontDescription.setVariantNumericSpacing(FontVariantNumericSpacing::TabularNumbers); > + if (is<PseudoElement>(element())) > + fontDescription.setVariantNumericSpacing(FontVariantNumericSpacing::TabularNumbers); > parentStyle.setFontDescription(WTFMove(fontDescription)); > parentStyle.fontCascade().update(&document().fontSelector()); > if (auto markerStyle = getCachedPseudoStyle(PseudoId::Marker, &parentStyle)) This seems overly hackish. If I understand correctly this function should have two branches. 1) The regular one that just does getCachedPseudoStyle(PseudoId::Marker, &style()) and nothing else a 2) A hack branch for is<PseudoElement> case where it initializes all of ::marker UA style (including unicode-bidi and white-space). It doesn't need to call getCachedPseudoStyle since it won't work.
Antoine Quint
Comment 3 2020-11-13 05:22:25 PST
Radar WebKit Bug Importer
Comment 4 2020-11-13 05:26:46 PST
Antoine Quint
Comment 5 2020-11-13 06:32:45 PST
Note You need to log in before you can comment on or make changes to this bug.