> No other implementation supports ::marker either, right? If that is
> correct, it seems fine to me to perfect styling support in a later
> release.
Yes. Currently, no other vendor support ::marker.

> Do other browsers support styling the disclosure triangle?
Chrome and Safari could style the triangle via
|summary::-webkit-details-marker|.
However it's not easy for us to replicate their implementation since they
are not use
"display: list-item" for the summary. We choose to follow the spec closely.

Even if we implement the same pseudo element name "-webkit-details-marker",
the usage will still be different.

For example to hide the triangle on Chrome and Safari:
summary::-webkit-details-marker { display: none; }

On Firefox:
summary::-moz-list-bullet { list-style-type: none;  }  OR summary {
display: block; }


Ting-Yu
_______________________________________________
dev-platform mailing list
dev-platform@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-platform

Reply via email to