Skip to content

Commit ab59de7

Browse files
committed
Roll protocol to r1557841
1 parent 6a7ac7d commit ab59de7

6 files changed

Lines changed: 28 additions & 32 deletions

File tree

changelog.md

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11

22

3+
## Roll protocol to r1557841 — _2025-12-12T04:33:57.000Z_
4+
###### Diff: [`6a7ac7d...dc3f099`](https://github.com/ChromeDevTools/devtools-protocol/compare/6a7ac7d...dc3f099)
5+
6+
```diff
7+
@@ domains/Audits.pdl:412 @@ experimental domain Audits
8+
FormInputHasWrongButWellIntendedAutocompleteValueError
9+
ResponseWasBlockedByORB
10+
NavigationEntryMarkedSkippable
11+
+ AutofillAndManualTextPolicyControlledFeaturesInfo
12+
+ AutofillPolicyControlledFeatureInfo
13+
+ ManualTextPolicyControlledFeatureInfo
14+
15+
# Depending on the concrete errorType, different properties are set.
16+
type GenericIssueDetails extends object
17+
```
18+
319
## Roll protocol to r1555890 — _2025-12-09T04:33:09.000Z_
4-
###### Diff: [`47b9187...09508c4`](https://github.com/ChromeDevTools/devtools-protocol/compare/47b9187...09508c4)
20+
###### Diff: [`47b9187...6a7ac7d`](https://github.com/ChromeDevTools/devtools-protocol/compare/47b9187...6a7ac7d)
521

622
```diff
723
@@ domains/DOM.pdl:76 @@ domain DOM
@@ -42119,30 +42135,4 @@ index 0dbdc01d..7a3c772c 100644
4211942135
+ command dismissDialog
4212042136
+ parameters
4212142137
+ string dialogId
42122-
```
42123-
42124-
## Roll protocol to r1115542 — _2023-03-10T04:29:00.000Z_
42125-
###### Diff: [`3b5916a...bc17667`](https://github.com/ChromeDevTools/devtools-protocol/compare/3b5916a...bc17667)
42126-
42127-
```diff
42128-
@@ browser_protocol.pdl:10900 @@ experimental domain Preload
42129-
42130-
# This domain allows interacting with the FedCM dialog.
42131-
experimental domain FedCm
42132-
+ # Corresponds to IdentityRequestAccount
42133-
+ type Account extends object
42134-
+ properties
42135-
+ string accountId
42136-
+ string email
42137-
+ string name
42138-
+ string givenName
42139-
+ string pictureUrl
42140-
+ string idpConfigUrl
42141-
+
42142-
event dialogShown
42143-
+ parameters
42144-
+ array of Account accounts
42145-
42146-
command enable
42147-
command disable
4214842138
```

json/browser_protocol.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1755,7 +1755,10 @@
17551755
"FormLabelForMatchesNonExistingIdError",
17561756
"FormInputHasWrongButWellIntendedAutocompleteValueError",
17571757
"ResponseWasBlockedByORB",
1758-
"NavigationEntryMarkedSkippable"
1758+
"NavigationEntryMarkedSkippable",
1759+
"AutofillAndManualTextPolicyControlledFeaturesInfo",
1760+
"AutofillPolicyControlledFeatureInfo",
1761+
"ManualTextPolicyControlledFeatureInfo"
17591762
]
17601763
},
17611764
{

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.1555890",
3+
"version": "0.0.1557841",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Audits.pdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,9 @@ experimental domain Audits
412412
FormInputHasWrongButWellIntendedAutocompleteValueError
413413
ResponseWasBlockedByORB
414414
NavigationEntryMarkedSkippable
415+
AutofillAndManualTextPolicyControlledFeaturesInfo
416+
AutofillPolicyControlledFeatureInfo
417+
ManualTextPolicyControlledFeatureInfo
415418

416419
# Depending on the concrete errorType, different properties are set.
417420
type GenericIssueDetails extends object

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3698,7 +3698,7 @@ export namespace Protocol {
36983698
request: AffectedRequest;
36993699
}
37003700

3701-
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable');
3701+
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable' | 'AutofillAndManualTextPolicyControlledFeaturesInfo' | 'AutofillPolicyControlledFeatureInfo' | 'ManualTextPolicyControlledFeatureInfo');
37023702

37033703
/**
37043704
* Depending on the concrete errorType, different properties are set.

0 commit comments

Comments
 (0)