devtools-protocol 0.0.1545402 → 0.0.1546284
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1749,12 +1749,13 @@
|
|
|
1749
1749
|
"FormInputWithNoLabelError",
|
|
1750
1750
|
"FormAutocompleteAttributeEmptyError",
|
|
1751
1751
|
"FormEmptyIdAndNameAttributesForInputError",
|
|
1752
|
-
"
|
|
1752
|
+
"FormAriaLabelledByToNonExistingIdError",
|
|
1753
1753
|
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
|
|
1754
|
-
"
|
|
1754
|
+
"FormLabelHasNeitherForNorNestedInputError",
|
|
1755
1755
|
"FormLabelForMatchesNonExistingIdError",
|
|
1756
1756
|
"FormInputHasWrongButWellIntendedAutocompleteValueError",
|
|
1757
|
-
"ResponseWasBlockedByORB"
|
|
1757
|
+
"ResponseWasBlockedByORB",
|
|
1758
|
+
"NavigationEntryMarkedSkippable"
|
|
1758
1759
|
]
|
|
1759
1760
|
},
|
|
1760
1761
|
{
|
package/package.json
CHANGED
package/pdl/domains/Audits.pdl
CHANGED
|
@@ -405,12 +405,13 @@ experimental domain Audits
|
|
|
405
405
|
FormInputWithNoLabelError
|
|
406
406
|
FormAutocompleteAttributeEmptyError
|
|
407
407
|
FormEmptyIdAndNameAttributesForInputError
|
|
408
|
-
|
|
408
|
+
FormAriaLabelledByToNonExistingIdError
|
|
409
409
|
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
|
|
410
|
-
|
|
410
|
+
FormLabelHasNeitherForNorNestedInputError
|
|
411
411
|
FormLabelForMatchesNonExistingIdError
|
|
412
412
|
FormInputHasWrongButWellIntendedAutocompleteValueError
|
|
413
413
|
ResponseWasBlockedByORB
|
|
414
|
+
NavigationEntryMarkedSkippable
|
|
414
415
|
|
|
415
416
|
# Depending on the concrete errorType, different properties are set.
|
|
416
417
|
type GenericIssueDetails extends object
|
package/types/protocol.d.ts
CHANGED
|
@@ -3698,7 +3698,7 @@ export namespace Protocol {
|
|
|
3698
3698
|
request: AffectedRequest;
|
|
3699
3699
|
}
|
|
3700
3700
|
|
|
3701
|
-
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | '
|
|
3701
|
+
export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable');
|
|
3702
3702
|
|
|
3703
3703
|
/**
|
|
3704
3704
|
* Depending on the concrete errorType, different properties are set.
|