Skip to content

Commit f64a130

Browse files
committed
Roll protocol to r1550230
1 parent 3507fa9 commit f64a130

File tree

6 files changed

+39
-71
lines changed

6 files changed

+39
-71
lines changed

changelog.md

Lines changed: 31 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,37 @@
11

22

3+
## Roll protocol to r1550230 — _2025-11-26T04:32:55.000Z_
4+
###### Diff: [`3507fa9...3cd67e0`](https://github.com/ChromeDevTools/devtools-protocol/compare/3507fa9...3cd67e0)
5+
6+
```diff
7+
@@ domains/Page.pdl:100 @@ domain Page
8+
ambient-light-sensor
9+
aria-notify
10+
attribution-reporting
11+
+ autofill
12+
autoplay
13+
bluetooth
14+
browsing-topics
15+
@@ -165,6 +166,7 @@ domain Page
16+
local-fonts
17+
local-network-access
18+
magnetometer
19+
+ manual-text
20+
media-playback-while-not-visible
21+
microphone
22+
midi
23+
@@ -182,7 +184,6 @@ domain Page
24+
run-ad-auction
25+
screen-wake-lock
26+
serial
27+
- shared-autofill
28+
shared-storage
29+
shared-storage-select-url
30+
smart-card
31+
```
32+
333
## Roll protocol to r1548823 — _2025-11-22T04:31:34.000Z_
4-
###### Diff: [`d9682c8...7783aa9`](https://github.com/ChromeDevTools/devtools-protocol/compare/d9682c8...7783aa9)
34+
###### Diff: [`d9682c8...3507fa9`](https://github.com/ChromeDevTools/devtools-protocol/compare/d9682c8...3507fa9)
535

636
```diff
737
@@ domains/Page.pdl:1767 @@ domain Page
@@ -41698,68 +41728,4 @@ index 0dbdc01d..7a3c772c 100644
4169841728
UntrustworthyReportingOrigin
4169941729
InsecureContext
4170041730
# TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader
41701-
```
41702-
41703-
## Roll protocol to r1113774 — _2023-03-07T04:29:03.000Z_
41704-
###### Diff: [`3ca05ae...e4e18e5`](https://github.com/ChromeDevTools/devtools-protocol/compare/3ca05ae...e4e18e5)
41705-
41706-
```diff
41707-
@@ browser_protocol.pdl:10742 @@ experimental domain Preload
41708-
# - https://github.com/WICG/nav-speculation/blob/main/triggers.md
41709-
string sourceText
41710-
41711-
+ # The type of preloading attempted. It corresponds to
41712-
+ # mojom::SpeculationAction (although PrefetchWithSubresources is omitted as it
41713-
+ # isn't being used by clients).
41714-
+ type SpeculationAction extends string
41715-
+ enum
41716-
+ Prefetch
41717-
+ Prerender
41718-
+
41719-
+ # Corresponds to mojom::SpeculationTargetHint.
41720-
+ # See https://github.com/WICG/nav-speculation/blob/main/triggers.md#window-name-targeting-hints
41721-
+ type SpeculationTargetHint extends string
41722-
+ enum
41723-
+ Blank
41724-
+ Self
41725-
+
41726-
+ # A key that identifies a preloading attempt.
41727-
+ #
41728-
+ # The url used is the url specified by the trigger (i.e. the initial URL), and
41729-
+ # not the final url that is navigated to. For example, prerendering allows
41730-
+ # same-origin main frame navigations during the attempt, but the attempt is
41731-
+ # still keyed with the initial URL.
41732-
+ type PreloadingAttemptKey extends object
41733-
+ properties
41734-
+ Network.LoaderId loaderId
41735-
+ SpeculationAction action
41736-
+ string url
41737-
+ optional SpeculationTargetHint targetHint
41738-
+
41739-
+ # Lists sources for a preloading attempt, specifically the ids of rule sets
41740-
+ # that had a speculation rule that triggered the attempt, and the
41741-
+ # BackendNodeIds of <a href> or <area href> elements that triggered the
41742-
+ # attempt (in the case of attempts triggered by a document rule). It is
41743-
+ # possible for mulitple rule sets and links to trigger a single attempt.
41744-
+ type PreloadingAttemptSource extends object
41745-
+ properties
41746-
+ PreloadingAttemptKey key
41747-
+ array of RuleSetId ruleSetIds
41748-
+ array of DOM.BackendNodeId nodeIds
41749-
+
41750-
command enable
41751-
41752-
command disable
41753-
@@ -10856,6 +10895,11 @@ experimental domain Preload
41754-
string prerenderingUrl
41755-
PreloadingStatus status
41756-
41757-
+ # Send a list of sources for all preloading attempts.
41758-
+ event preloadingAttemptSourcesUpdated
41759-
+ parameters
41760-
+ array of PreloadingAttemptSource preloadingAttemptSources
41761-
+
41762-
# This domain allows interacting with the FedCM dialog.
41763-
experimental domain FedCm
41764-
event dialogShown
4176541731
```

json/browser_protocol.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20487,6 +20487,7 @@
2048720487
"ambient-light-sensor",
2048820488
"aria-notify",
2048920489
"attribution-reporting",
20490+
"autofill",
2049020491
"autoplay",
2049120492
"bluetooth",
2049220493
"browsing-topics",
@@ -20552,6 +20553,7 @@
2055220553
"local-fonts",
2055320554
"local-network-access",
2055420555
"magnetometer",
20556+
"manual-text",
2055520557
"media-playback-while-not-visible",
2055620558
"microphone",
2055720559
"midi",
@@ -20569,7 +20571,6 @@
2056920571
"run-ad-auction",
2057020572
"screen-wake-lock",
2057120573
"serial",
20572-
"shared-autofill",
2057320574
"shared-storage",
2057420575
"shared-storage-select-url",
2057520576
"smart-card",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1548823",
3+
"version": "0.0.1550230",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Page.pdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ domain Page
100100
ambient-light-sensor
101101
aria-notify
102102
attribution-reporting
103+
autofill
103104
autoplay
104105
bluetooth
105106
browsing-topics
@@ -165,6 +166,7 @@ domain Page
165166
local-fonts
166167
local-network-access
167168
magnetometer
169+
manual-text
168170
media-playback-while-not-visible
169171
microphone
170172
midi
@@ -182,7 +184,6 @@ domain Page
182184
run-ad-auction
183185
screen-wake-lock
184186
serial
185-
shared-autofill
186187
shared-storage
187188
shared-storage-select-url
188189
smart-card

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15817,7 +15817,7 @@ export namespace Protocol {
1581715817
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
1581815818
* @experimental
1581915819
*/
15820-
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
15820+
export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autofill' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-multicast' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'manual-text' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
1582115821

1582215822
/**
1582315823
* Reason for a permissions policy feature to be disabled.

0 commit comments

Comments
 (0)