Open spectranaut opened 1 year ago
I ran the following script on this page:
console.log([...document.querySelectorAll(".section-content ul li code")].map((x) => x.innerText).filter((x) => x !== "-webkit-" && (x.startsWith(":") ? !CSS.supports(`selector(${x.replace("()", "(p)")})`) : !CSS.supports(x, "initial") && !CSS.supports(`@media (${x})`))).join("\n"))
(It may false-positive, but probably won't false-negative)
And here's the result I got, in Chrome:
-webkit-column-axis
-webkit-column-progression
-webkit-cursor-visibility
-webkit-hyphenate-limit-after
-webkit-hyphenate-limit-before
-webkit-hyphenate-limit-lines
-webkit-line-align
-webkit-line-box-contain
-webkit-line-grid
-webkit-line-snap
-webkit-mask-repeat-x
-webkit-mask-repeat-y
-webkit-mask-source-type
-webkit-nbsp-mode
-webkit-text-decoration-skip
-webkit-text-zoom
-webkit-touch-callout
:-webkit-animating-full-screen-transition
:-webkit-autofill-strong-password
:-webkit-full-screen-document
:-webkit-full-screen-controls-hidden
::-webkit-search-results-button
-webkit-device-pixel-ratio
-webkit-transform-2d
-webkit-transform-3d
In Safari:
-webkit-app-region
-webkit-mask-repeat-x
-webkit-mask-repeat-y
-webkit-tap-highlight-color
-webkit-touch-callout
::-webkit-inner-spin-button
::-webkit-meter-bar
::-webkit-meter-even-less-good-value
::-webkit-meter-inner-element
::-webkit-meter-optimum-value
::-webkit-meter-suboptimum-value
::-webkit-progress-bar
::-webkit-progress-inner-element
::-webkit-progress-value
::-webkit-search-cancel-button
::-webkit-search-results-button
::-webkit-slider-runnable-track
::-webkit-slider-thumb
-webkit-device-pixel-ratio
-webkit-transform-2d
-webkit-transform-3d
Unsupported in both:
-webkit-mask-repeat-x
-webkit-mask-repeat-y
-webkit-touch-callout
::-webkit-search-results-button
-webkit-device-pixel-ratio
-webkit-transform-2d
-webkit-transform-3d
MDN URL
https://developer.mozilla.org/en-US/docs/Web/CSS/WebKit_Extensions
What specific section or headline is this issue about?
all of them?
What information was incorrect, unhelpful, or incomplete?
I think many items in the WebKit-only properties list are no longer supported in WebKit, just by doing a quick search of the WebKit code for some of them. I noticed, in particular, "-webkit-highlight".
What did you expect to see?
It seems like it would be hard to keep this list updated, but I think it might have some very out of date things.
Do you have any supporting links, references, or citations?
No response
Do you have anything more you want to share?
No response