Bug 267330
Summary: | Unprefix ::webkit-details-marker > ::marker | ||
---|---|---|---|
Product: | WebKit | Reporter: | Nilesh Prajapati <nileshprajapati> |
Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | karlcow |
Priority: | P2 | ||
Version: | Safari 17 | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Nilesh Prajapati
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 | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Karl Dubost
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
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
ha this is Bug 157323
*** This bug has been marked as a duplicate of bug 157323 ***