Skip to content

Commit 8aa0e0f

Browse files
committed
Roll protocol to r1642743
1 parent 5ad5530 commit 8aa0e0f

6 files changed

Lines changed: 21 additions & 75 deletions

File tree

changelog.md

Lines changed: 15 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11

22

3+
## Roll protocol to r1642743 — _2026-06-06T05:42:10.000Z_
4+
###### Diff: [`5ad5530...ac5db52`](https://github.com/ChromeDevTools/devtools-protocol/compare/5ad5530...ac5db52)
5+
6+
```diff
7+
@@ domains/Page.pdl:175 @@ domain Page
8+
usb-unrestricted
9+
vertical-scroll
10+
web-app-installation
11+
+ webnn
12+
web-printing
13+
web-share
14+
window-management
15+
```
16+
317
## Roll protocol to r1640722 — _2026-06-03T06:04:43.000Z_
4-
###### Diff: [`ef4da13...8c324ba`](https://github.com/ChromeDevTools/devtools-protocol/compare/ef4da13...8c324ba)
18+
###### Diff: [`ef4da13...5ad5530`](https://github.com/ChromeDevTools/devtools-protocol/compare/ef4da13...5ad5530)
519

620
```diff
721
@@ domains/DOM.pdl:78 @@ domain DOM
@@ -42885,74 +42899,4 @@ index 4754f17c..8dad9c98 100644
4288542899
ch-rtt
4288642900
ch-save-data
4288742901
ch-ua
42888-
```
42889-
42890-
## Roll protocol to r1188649 — _2023-08-26T04:25:29.000Z_
42891-
###### Diff: [`4e97090...dad93a5`](https://github.com/ChromeDevTools/devtools-protocol/compare/4e97090...dad93a5)
42892-
42893-
```diff
42894-
@@ browser_protocol.pdl:1002 @@ experimental domain Autofill
42895-
properties
42896-
# address field name, for example GIVEN_NAME.
42897-
string name
42898-
- # address field name, for example Jon Doe.
42899-
+ # address field value, for example Jon Doe.
42900-
string value
42901-
42902-
+ # A list of address fields.
42903-
+ type AddressFields extends object
42904-
+ properties
42905-
+ array of AddressField fields
42906-
+
42907-
type Address extends object
42908-
properties
42909-
- # fields and values defining a test address.
42910-
+ # fields and values defining an address.
42911-
array of AddressField fields
42912-
42913-
+ # Defines how an address can be displayed like in chrome://settings/addresses.
42914-
+ # Address UI is a two dimensional array, each inner array is an "address information line", and when rendered in a UI surface should be displayed as such.
42915-
+ # The following address UI for instance:
42916-
+ # [[{name: "GIVE_NAME", value: "Jon"}, {name: "FAMILY_NAME", value: "Doe"}], [{name: "CITY", value: "Munich"}, {name: "ZIP", value: "81456"}]]
42917-
+ # should allow the receiver to render:
42918-
+ # Jon Doe
42919-
+ # Munich 81456
42920-
+ type AddressUI extends object
42921-
+ properties
42922-
+ # A two dimension array containing the repesentation of values from an address profile.
42923-
+ array of AddressFields addressFields
42924-
+
42925-
+ # Specified whether a filled field was done so by using the html autocomplete attribute or autofill heuristics.
42926-
+ type FillingStrategy extends string
42927-
+ enum
42928-
+ autocompleteAttribute
42929-
+ autofillInferred
42930-
+
42931-
+ type FilledField extends object
42932-
+ properties
42933-
+ # The type of the field, e.g text, password etc.
42934-
+ string htmlType
42935-
+ # the html id
42936-
+ string id
42937-
+ # the html name
42938-
+ string name
42939-
+ # the field value
42940-
+ string value
42941-
+ # The actual field type, e.g FAMILY_NAME
42942-
+ string autofillType
42943-
+ # The filling strategy
42944-
+ FillingStrategy fillingStrategy
42945-
+
42946-
+ # Emitted when an address form is filled.
42947-
+ event addressFormFilled
42948-
+ parameters
42949-
+ # Information about the fields that were filled
42950-
+ array of FilledField filledFields
42951-
+ # An UI representation of the address used to fill the form.
42952-
+ # Consists of a 2D array where each child represents an address/profile line.
42953-
+ AddressUI addressUi
42954-
+
42955-
# Trigger autofill on a form identified by the fieldId.
42956-
# If the field and related form cannot be autofilled, returns an error.
42957-
command trigger
4295842902
```

json/browser_protocol.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21877,6 +21877,7 @@
2187721877
"usb-unrestricted",
2187821878
"vertical-scroll",
2187921879
"web-app-installation",
21880+
"webnn",
2188021881
"web-printing",
2188121882
"web-share",
2188221883
"window-management",

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.1640722",
3+
"version": "0.0.1642743",
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ domain Page
175175
usb-unrestricted
176176
vertical-scroll
177177
web-app-installation
178+
webnn
178179
web-printing
179180
web-share
180181
window-management

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16644,7 +16644,7 @@ export namespace Protocol {
1664416644
* in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
1664516645
* @experimental
1664616646
*/
16647-
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' | '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' | 'local-network-access' | 'loopback-network' | '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' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
16647+
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' | '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' | 'local-network-access' | 'loopback-network' | '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' | 'tools' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'webnn' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
1664816648

1664916649
/**
1665016650
* Reason for a permissions policy feature to be disabled.

0 commit comments

Comments
 (0)