Skip to content

Commit 672dae3

Browse files
committed
Roll protocol to r1546284
1 parent 1f03df6 commit 672dae3

File tree

6 files changed

+34
-24
lines changed

6 files changed

+34
-24
lines changed

changelog.md

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

22

3+
## Roll protocol to r1546284 — _2025-11-18T04:32:28.000Z_
4+
###### Diff: [`1f03df6...d995e7c`](https://github.com/ChromeDevTools/devtools-protocol/compare/1f03df6...d995e7c)
5+
6+
```diff
7+
@@ domains/Audits.pdl:405 @@ experimental domain Audits
8+
FormInputWithNoLabelError
9+
FormAutocompleteAttributeEmptyError
10+
FormEmptyIdAndNameAttributesForInputError
11+
- FormAriaLabelledByToNonExistingId
12+
+ FormAriaLabelledByToNonExistingIdError
13+
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
14+
- FormLabelHasNeitherForNorNestedInput
15+
+ FormLabelHasNeitherForNorNestedInputError
16+
FormLabelForMatchesNonExistingIdError
17+
FormInputHasWrongButWellIntendedAutocompleteValueError
18+
ResponseWasBlockedByORB
19+
+ NavigationEntryMarkedSkippable
20+
21+
# Depending on the concrete errorType, different properties are set.
22+
type GenericIssueDetails extends object
23+
```
24+
325
## Roll protocol to r1545402 — _2025-11-15T04:31:18.000Z_
4-
###### Diff: [`a134eaa...a77be31`](https://github.com/ChromeDevTools/devtools-protocol/compare/a134eaa...a77be31)
26+
###### Diff: [`a134eaa...1f03df6`](https://github.com/ChromeDevTools/devtools-protocol/compare/a134eaa...1f03df6)
527

628
```diff
729
@@ domains/Network.pdl:298 @@ domain Network
@@ -41908,20 +41930,6 @@ index 0dbdc01d..7a3c772c 100644
4190841930
FormLabelForMatchesNonExistingIdError
4190941931
- FormHasPasswordFieldWithoutUsernameFieldError
4191041932

41911-
# Depending on the concrete errorType, different properties are set.
41912-
type GenericIssueDetails extends object
41913-
```
41914-
41915-
## Roll protocol to r1109433 — _2023-02-24T04:29:05.000Z_
41916-
###### Diff: [`8e5df71...41a0227`](https://github.com/ChromeDevTools/devtools-protocol/compare/8e5df71...41a0227)
41917-
41918-
```diff
41919-
@@ browser_protocol.pdl:752 @@ experimental domain Audits
41920-
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
41921-
FormLabelHasNeitherForNorNestedInput
41922-
FormLabelForMatchesNonExistingIdError
41923-
+ FormHasPasswordFieldWithoutUsernameFieldError
41924-
4192541933
# Depending on the concrete errorType, different properties are set.
4192641934
type GenericIssueDetails extends object
4192741935
```

json/browser_protocol.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1749,12 +1749,13 @@
17491749
"FormInputWithNoLabelError",
17501750
"FormAutocompleteAttributeEmptyError",
17511751
"FormEmptyIdAndNameAttributesForInputError",
1752-
"FormAriaLabelledByToNonExistingId",
1752+
"FormAriaLabelledByToNonExistingIdError",
17531753
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1754-
"FormLabelHasNeitherForNorNestedInput",
1754+
"FormLabelHasNeitherForNorNestedInputError",
17551755
"FormLabelForMatchesNonExistingIdError",
17561756
"FormInputHasWrongButWellIntendedAutocompleteValueError",
1757-
"ResponseWasBlockedByORB"
1757+
"ResponseWasBlockedByORB",
1758+
"NavigationEntryMarkedSkippable"
17581759
]
17591760
},
17601761
{

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.1545402",
3+
"version": "0.0.1546284",
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,12 +405,13 @@ experimental domain Audits
405405
FormInputWithNoLabelError
406406
FormAutocompleteAttributeEmptyError
407407
FormEmptyIdAndNameAttributesForInputError
408-
FormAriaLabelledByToNonExistingId
408+
FormAriaLabelledByToNonExistingIdError
409409
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
410-
FormLabelHasNeitherForNorNestedInput
410+
FormLabelHasNeitherForNorNestedInputError
411411
FormLabelForMatchesNonExistingIdError
412412
FormInputHasWrongButWellIntendedAutocompleteValueError
413413
ResponseWasBlockedByORB
414+
NavigationEntryMarkedSkippable
414415

415416
# Depending on the concrete errorType, different properties are set.
416417
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' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB');
3701+
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable');
37023702

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

0 commit comments

Comments
 (0)