You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I write summary::details-marker { /*something */} I would expect autoprefixer to emit something like summary::-webkit-details-marker, summary::details-marker { /* something */} for me, but it doesn't appear to do so.
The text was updated successfully, but these errors were encountered:
It's supported by Chrome as well. I found this discussion about it: whatwg/html#722. Seems like this feature might not be going anywhere much. The main reason you want it is to call display: none on it, so that it doesn't show up in those browsers. My main motivation in filing this issue, is that I sort of expected it to add the prefix for me, but it didn't.
When I write
summary::details-marker { /*something */}
I would expect autoprefixer to emit something likesummary::-webkit-details-marker, summary::details-marker { /* something */}
for me, but it doesn't appear to do so.The text was updated successfully, but these errors were encountered: