devtools-protocol 0.0.1107588 → 0.0.1109433

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.
@@ -1543,7 +1543,8 @@
1543
1543
  "FormAriaLabelledByToNonExistingId",
1544
1544
  "FormInputAssignedAutocompleteValueToIdOrNameAttributeError",
1545
1545
  "FormLabelHasNeitherForNorNestedInput",
1546
- "FormLabelForMatchesNonExistingIdError"
1546
+ "FormLabelForMatchesNonExistingIdError",
1547
+ "FormHasPasswordFieldWithoutUsernameFieldError"
1547
1548
  ]
1548
1549
  },
1549
1550
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1107588",
3
+ "version": "0.0.1109433",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -752,6 +752,7 @@ experimental domain Audits
752
752
  FormInputAssignedAutocompleteValueToIdOrNameAttributeError
753
753
  FormLabelHasNeitherForNorNestedInput
754
754
  FormLabelForMatchesNonExistingIdError
755
+ FormHasPasswordFieldWithoutUsernameFieldError
755
756
 
756
757
  # Depending on the concrete errorType, different properties are set.
757
758
  type GenericIssueDetails extends object
@@ -3443,7 +3443,7 @@ export namespace Protocol {
3443
3443
  location?: SourceCodeLocation;
3444
3444
  }
3445
3445
 
3446
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError');
3446
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingId' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInput' | 'FormLabelForMatchesNonExistingIdError' | 'FormHasPasswordFieldWithoutUsernameFieldError');
3447
3447
 
3448
3448
  /**
3449
3449
  * Depending on the concrete errorType, different properties are set.