devtools-protocol 0.0.1097787 → 0.0.1099089

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.
@@ -1539,7 +1539,9 @@
1539
1539
  "FormDuplicateIdForInputError",
1540
1540
  "FormInputWithNoLabelError",
1541
1541
  "FormAutocompleteAttributeEmptyError",
1542
- "FormEmptyIdAndNameAttributesForInputError"
1542
+ "FormEmptyIdAndNameAttributesForInputError",
1543
+ "FormAriaLabelledByToNonExistingId",
1544
+ "FormInputAssignedAutocompleteValueToIdOrNameAttributeError"
1543
1545
  ]
1544
1546
  },
1545
1547
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1097787",
3
+ "version": "0.0.1099089",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -748,6 +748,8 @@ experimental domain Audits
748
748
  FormInputWithNoLabelError
749
749
  FormAutocompleteAttributeEmptyError
750
750
  FormEmptyIdAndNameAttributesForInputError
751
+ FormAriaLabelledByToNonExistingId
752
+ FormInputAssignedAutocompleteValueToIdOrNameAttributeError
751
753
 
752
754
  # Depending on the concrete errorType, different properties are set.
753
755
  type GenericIssueDetails extends object
@@ -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');
3445
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError');
3446
3446
 
3447
3447
  /**
3448
3448
  * Depending on the concrete errorType, different properties are set.