Claas Augner
Claas Augner
Based on the Chrome docs, we should indeed set `partial_implementation: true` along with `notes: "Available on macOS and Windows only."` in the following Chrome statement: https://github.com/mdn/browser-compat-data/blob/b69e1fc5f297abfd07933b0b307f49239e53162f/webextensions/manifest/chrome_settings_overrides.json#L8-L10 @Electrenator Would you like...
And while we're here, we can set `version_added: "35"`: - https://github.com/caugner/chromium-releases/blame/v58/chrome/common/extensions/api/_manifest_features.json#L49 - https://github.com/chromium/chromium/commit/fe4521c72ade5144b6fb08dcc40afcaf62c67ec3 Most subfeatures appear to have been supported since Chrome 35: https://github.com/caugner/chromium-releases/blob/v35/chrome/common/extensions/docs/templates/articles/settings_override.html#L17-L39 The exception is`prepopulated_id`, which was added...
Checking all sizing properties: - `width`/ `height`: Chrome and Safari support it as `-webkit-fill-available`, so `experimental: false` is correct - `min-width` / `max-width`: Only Chrome supports it (as `-webkit-fill-available`), so...
[Code search for `-webkit-fill-available`](https://github.com/search?q=repo%3AWebKit%2FWebKit%20%2F-webkit-fill-available%2F&type=code) in the WebKit repo suggests that Safari supports it for all sizing properties (`min-height`, `max-height`, `min-width`, `max-width`, `height`, and `width`). In particular, the [`CSSKeywordCompletions.js` file](https://github.com/WebKit/WebKit/blob/324c2ca1c8562b656b0258b1bedb97789cf48311/Source/WebInspectorUI/UserInterface/Models/CSSKeywordCompletions.js) lists...
With [this JSBin](https://jsbin.com/zixebiqate/5/edit?html,js,output) for Safari < 9 (using `setProperty` and `getPropertyValue`), and [this JSBin](https://jsbin.com/gagadepano/1/edit) (using `CSS.supports()`) for Safari 9+, I determined: - Safari 5.1.5 / 6.0.5 accept `-webkit-fill-available` for all...
> I can reproduce this in Firefox and Chrome. I was able to reproduce in BrowserStack Live at 1920x970 on Windows 11 with Chrome 128 _consistently_ at zoom level 75%...
@def00111 If you like, you can add a note here that explains that the property is nullable: https://github.com/mdn/browser-compat-data/blob/45fe059ed0a9c6b94d522be58afc361f44b2e1dc/api/MutationRecord.json#L18-L20
We should check here if speech recognition is really available in Opera and Samsung Internet, as currently stated in the BCD table.
Meanwhile resolved via https://github.com/mdn/browser-compat-data/pull/25971.
Thank you for these suggestions, Onkar. 🙌 Note that we already have structured breadcrumb data on all pages with breadcrumbs. The Blog, however, has no breadcrumbs, so it has no...