devtools-protocol 0.0.1100268 → 0.0.1100832
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.
@@ -1542,7 +1542,8 @@
|
|
1542
1542
|
"FormEmptyIdAndNameAttributesForInputError",
|
1543
1543
|
"FormAriaLabelledByToNonExistingId",
|
1544
1544
|
"FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
|
1545
|
-
"FormLabelHasNeitherForNorNestedInput"
|
1545
|
+
"FormLabelHasNeitherForNorNestedInput",
|
1546
|
+
"FormLabelForMatchesNonExistingIdError"
|
1546
1547
|
]
|
1547
1548
|
},
|
1548
1549
|
{
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -751,6 +751,7 @@ experimental domain Audits
|
|
751
751
|
FormAriaLabelledByToNonExistingId
|
752
752
|
FormInputAssignedAutocompleteValueToIdOrNameAttributeError
|
753
753
|
FormLabelHasNeitherForNorNestedInput
|
754
|
+
FormLabelForMatchesNonExistingIdError
|
754
755
|
|
755
756
|
# Depending on the concrete errorType, different properties are set.
|
756
757
|
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' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput');
|
3445
|
+
export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError');
|
3446
3446
|
|
3447
3447
|
/**
|
3448
3448
|
* Depending on the concrete errorType, different properties are set.
|