Skip to content

Commit 9cbdf2c

Browse files
Merge branch 'main' into dependabot/npm_and_yarn/packages/web-features/types/node-18.19.84
2 parents 9670d22 + eea2ffd commit 9cbdf2c

15 files changed

+90
-77
lines changed

features/cookie-enabled.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cookieEnabled
2-
description: "The `navigator.cookieEnabled` property returns a Boolean value for whether the browser accepts or ignores attempts to write cookie data."
2+
description: "The `navigator.cookieEnabled` property is a boolean for whether the browser accepts or ignores attempts to write cookie data."
33
spec: https://html.spec.whatwg.org/multipage/system-state.html#cookies
44
compat_features:
55
- api.Navigator.cookieEnabled

features/device-memory.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Device memory
2-
description: The `navigator.deviceMemory` property returns the approximate amount of device memory, in gigabytes.
2+
description: The `navigator.deviceMemory` property is the approximate amount of device memory, in gigabytes.
33
spec: https://www.w3.org/TR/device-memory/
44
compat_features:
55
- api.Navigator.deviceMemory

features/devicepixelratio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: devicePixelRatio
2-
description: The `window.devicePixelRatio` read-only property returns the ratio of the size of one CSS pixel to the vertical size of one physical pixel on the current display device.
2+
description: The `window.devicePixelRatio` property is the ratio of the size of one CSS pixel to the vertical size of one physical pixel on the current display device.
33
spec: https://drafts.csswg.org/cssom-view-1/#dom-window-devicepixelratio
44
caniuse: devicepixelratio
55
compat_features:

features/hardware-concurrency.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: hardwareConcurrency
2-
description: "The `navigator.hardwareConcurrency` read-only property returns the number of logical processors available to run threads on the user's computer."
2+
description: "The `navigator.hardwareConcurrency` property is the number of logical processors available to run threads on the user's computer."
33
spec: https://html.spec.whatwg.org/multipage/workers.html#navigator.hardwareconcurrency
44
caniuse: hardwareconcurrency
55
compat_features:

features/if.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: if()
2+
description: The `if()` CSS function is an inline conditional value that returns a value based on a set of conditions.
3+
spec: https://drafts.csswg.org/css-values-5/#if-notation
4+
group: css
5+
# No compat keys yet, this feature is planned to ship with Chromium M136

features/if.yml.dist

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Generated from: if.yml
2+
# Do not edit this file by hand. Edit the source file instead!
3+
4+
status:
5+
baseline: false
6+
support: {}

features/language.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Language
2-
description: "The `navigator.language` read-only property returns a string representing the preferred language of the user, usually the language of the browser UI. The `navigator.languages` read-only property returns an array of strings representing the user's preferred languages."
2+
description: "The `navigator.language` property is a string representing the preferred language of the user, usually the language of the browser UI. The `navigator.languages` property is an array of strings representing the user's preferred languages."
33
spec: https://html.spec.whatwg.org/multipage/system-state.html#language-preferences
44
status:
55
compute_from: api.Navigator.language

features/numeric-factory-functions.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Numeric factory functions
22
description: The numeric factory functions, such as `CSS.px()` or `CSS.kHz()`, return a `CSSUnitValue` representing a CSS number value (as in `12px` or `440kHz`).
33
spec: https://drafts.css-houdini.org/css-typed-om-1/#numeric-factory
44
group: cssom
5+
status:
6+
compute_from: api.CSS.px_static
57
compat_features:
68
- api.CSS.Hz_static
79
- api.CSS.Q_static

features/numeric-factory-functions.yml.dist

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
status:
55
baseline: false
66
support:
7-
chrome: "118"
8-
chrome_android: "118"
9-
edge: "118"
10-
safari: "17.2"
11-
safari_ios: "17.2"
7+
chrome: "66"
8+
chrome_android: "66"
9+
edge: "79"
10+
safari: "16.4"
11+
safari_ios: "16.4"
1212
compat_features:
13+
# ⬇️ Same status as overall feature ⬇️
1314
# baseline: false
1415
# support:
1516
# chrome: "66"
@@ -100,7 +101,6 @@ compat_features:
100101
- api.CSS.lh_static
101102
- api.CSS.rlh_static
102103

103-
# ⬇️ Same status as overall feature ⬇️
104104
# baseline: false
105105
# support:
106106
# chrome: "118"

features/online.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Online status
2-
description: The `navigator.onLine` property returns a Boolean for whether the browser is connected to some network (though not necessarily the internet). The `online` and `offline` events fire when the connection state changes.
2+
description: The `navigator.onLine` property is a boolean for whether the browser is connected to some network (though not necessarily the internet). The `online` and `offline` events fire when the connection state changes.
33
spec:
44
- https://html.spec.whatwg.org/multipage/system-state.html#navigator.online
55
- https://html.spec.whatwg.org/multipage/indices.html#event-online

features/pdf-viewer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: pdfViewerEnabled
2-
description: The `navigator.pdfViewerEnabled` read-only property returns a Boolean for whether the browser navigates to and shows a PDF in the browser window or downloads the PDF.
2+
description: The `navigator.pdfViewerEnabled` property is a boolean for whether the browser navigates to and shows a PDF in the browser window or downloads the PDF.
33
spec: https://html.spec.whatwg.org/multipage/system-state.html#pdf-viewing-support
44
compat_features:
55
- api.Navigator.pdfViewerEnabled

features/user-agent-sniffing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: User agent sniffing
2-
description: "The `navigator.userAgent` read-only property returns the user agent string for the current browser. Selectively showing content based on the user agent string is unreliable. Consider using feature detection instead."
2+
description: "The `navigator.userAgent` property is the user agent string for the current browser. Selectively showing content based on the user agent string is unreliable. Consider using feature detection instead."
33
spec: https://html.spec.whatwg.org/multipage/system-state.html#the-navigator-object
44
compat_features:
55
- api.Navigator.userAgent

package-lock.json

+60-60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
"ts-json-schema-generator": "^2.3.0",
5858
"tsx": "^4.19.3",
5959
"typescript": "^5.8.2",
60-
"typescript-eslint": "^8.27.0",
60+
"typescript-eslint": "^8.28.0",
6161
"unified": "^11.0.5",
62-
"web-specs": "^3.43.0",
62+
"web-specs": "^3.44.0",
6363
"winston": "^3.17.0",
6464
"yaml": "^2.7.0",
6565
"yargs": "^17.7.2"

packages/compute-baseline/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"license": "Apache-2.0",
2828
"devDependencies": {
29-
"@types/chai": "^5.2.0",
29+
"@types/chai": "^5.2.1",
3030
"@types/chai-jest-snapshot": "^1.3.8",
3131
"@types/mocha": "^10.0.10",
3232
"c8": "^10.1.3",

0 commit comments

Comments
 (0)