devtools-protocol 0.0.1096014 → 0.0.1097235
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.
@@ -1537,7 +1537,9 @@
|
|
1537
1537
|
"CrossOriginPortalPostMessageError",
|
1538
1538
|
"FormLabelForNameError",
|
1539
1539
|
"FormDuplicateIdForInputError",
|
1540
|
-
"FormInputWithNoLabelError"
|
1540
|
+
"FormInputWithNoLabelError",
|
1541
|
+
"FormAutocompleteAttributeEmptyError",
|
1542
|
+
"FormEmptyIdAndNameAttributesForInputError"
|
1541
1543
|
]
|
1542
1544
|
},
|
1543
1545
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -746,6 +746,8 @@ experimental domain Audits
|
|
746
746
|
FormLabelForNameError
|
747
747
|
FormDuplicateIdForInputError
|
748
748
|
FormInputWithNoLabelError
|
749
|
+
FormAutocompleteAttributeEmptyError
|
750
|
+
FormEmptyIdAndNameAttributesForInputError
|
749
751
|
|
750
752
|
# Depending on the concrete errorType, different properties are set.
|
751
753
|
type GenericIssueDetails extends object
|
package/types/protocol.d.ts
CHANGED
@@ -3442,7 +3442,7 @@ export namespace Protocol {
|
|
3442
3442
|
location?: SourceCodeLocation;
|
3443
3443
|
}
|
3444
3444
|
|
3445
|
-
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError');
|
3445
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError');
|
3446
3446
|
|
3447
3447
|
/**
|
3448
3448
|
* Depending on the concrete errorType, different properties are set.
|