Bug 267330

Summary: Unprefix ::webkit-details-marker > ::marker
Product: WebKit Reporter: Nilesh Prajapati <nileshprajapati>
Component: CSSAssignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: karlcow
Priority: P2    
Version: Safari 17   
Hardware: Unspecified   
OS: Unspecified   

Nilesh Prajapati
Reported 2024-01-10 04:07:34 PST
Hi Webkit Is there any plan to standardise/unprefix `::webkit-details-marker` to `::marker`? With the release of Exclusive accordions in iOS 17.2 the current way to remove the triangle from the <summary> for Safari is to use `::webkit-details-marker`. Chrome and Firefox browsers have supported the `::marker` pseudo-element since 2020. https://developer.mozilla.org/en-US/docs/Web/CSS/::marker Chrome: Supported since 86 Firefox: Supported since 68 Safari: Partial support Thanks, Nilesh
Attachments
Karl Dubost
Comment 1 2024-01-10 04:50:42 PST
Hi Nilesh, Thanks. It's already unprefixed. But it is missing some properties. Do you think Bug 204163 already covers what you are asking?
Nilesh Prajapati
Comment 2 2024-01-10 06:50:48 PST
Hi Karl I dont think (Bug 204163) cover my issue. <details name="test"> <summary>Heading</summary> <p>Text.</p> </details> Currrently, to remove the triangle indicator from summary element I will have to include (::-webkit-details-marker) pseudo-element: summary::-webkit-details-marker, summary::marker { display: none; } While both Chrome and Firefox support and uses (::marker) pseudo-element. summary::marker { display: none; } Thanks, Nilesh
Karl Dubost
Comment 3 2024-01-10 07:19:57 PST
ha this is Bug 157323 *** This bug has been marked as a duplicate of bug 157323 ***
Note You need to log in before you can comment on or make changes to this bug.