devtools-protocol 0.0.1376744 → 0.0.1377232

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.
@@ -210,6 +210,7 @@
210
210
  "description": "Values of AXProperty name:\n- from 'busy' to 'roledescription': states which apply to every AX node\n- from 'live' to 'root': attributes which apply to nodes in live regions\n- from 'autocomplete' to 'valuetext': attributes which apply to widgets\n- from 'checked' to 'selected': states which apply to widgets\n- from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.",
211
211
  "type": "string",
212
212
  "enum": [
213
+ "actions",
213
214
  "busy",
214
215
  "disabled",
215
216
  "editable",
@@ -1048,7 +1049,9 @@
1048
1049
  "ExcludeSamePartyCrossPartyContext",
1049
1050
  "ExcludeDomainNonASCII",
1050
1051
  "ExcludeThirdPartyCookieBlockedInFirstPartySet",
1051
- "ExcludeThirdPartyPhaseout"
1052
+ "ExcludeThirdPartyPhaseout",
1053
+ "ExcludePortMismatch",
1054
+ "ExcludeSchemeMismatch"
1052
1055
  ]
1053
1056
  },
1054
1057
  {
@@ -5695,6 +5698,7 @@
5695
5698
  "check",
5696
5699
  "before",
5697
5700
  "after",
5701
+ "select-arrow",
5698
5702
  "marker",
5699
5703
  "backdrop",
5700
5704
  "column",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1376744",
3
+ "version": "0.0.1377232",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -117,6 +117,7 @@ experimental domain Accessibility
117
117
  # - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
118
118
  type AXPropertyName extends string
119
119
  enum
120
+ actions
120
121
  busy
121
122
  disabled
122
123
  editable
@@ -517,6 +518,8 @@ experimental domain Audits
517
518
  ExcludeDomainNonASCII
518
519
  ExcludeThirdPartyCookieBlockedInFirstPartySet
519
520
  ExcludeThirdPartyPhaseout
521
+ ExcludePortMismatch
522
+ ExcludeSchemeMismatch
520
523
 
521
524
  type CookieWarningReason extends string
522
525
  enum
@@ -2695,6 +2698,7 @@ domain DOM
2695
2698
  check
2696
2699
  before
2697
2700
  after
2701
+ select-arrow
2698
2702
  marker
2699
2703
  backdrop
2700
2704
  column
@@ -2785,7 +2785,7 @@ export namespace Protocol {
2785
2785
  * - from 'checked' to 'selected': states which apply to widgets
2786
2786
  * - from 'activedescendant' to 'owns' - relationships between elements other than parent/child/sibling.
2787
2787
  */
2788
- export type AXPropertyName = ('busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns' | 'url');
2788
+ export type AXPropertyName = ('actions' | 'busy' | 'disabled' | 'editable' | 'focusable' | 'focused' | 'hidden' | 'hiddenRoot' | 'invalid' | 'keyshortcuts' | 'settable' | 'roledescription' | 'live' | 'atomic' | 'relevant' | 'root' | 'autocomplete' | 'hasPopup' | 'level' | 'multiselectable' | 'orientation' | 'multiline' | 'readonly' | 'required' | 'valuemin' | 'valuemax' | 'valuetext' | 'checked' | 'expanded' | 'modal' | 'pressed' | 'selected' | 'activedescendant' | 'controls' | 'describedby' | 'details' | 'errormessage' | 'flowto' | 'labelledby' | 'owns' | 'url');
2789
2789
 
2790
2790
  /**
2791
2791
  * A node in the accessibility tree.
@@ -3317,7 +3317,7 @@ export namespace Protocol {
3317
3317
  frameId: Page.FrameId;
3318
3318
  }
3319
3319
 
3320
- export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout');
3320
+ export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout' | 'ExcludePortMismatch' | 'ExcludeSchemeMismatch');
3321
3321
 
3322
3322
  export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout' | 'WarnCrossSiteRedirectDowngradeChangesInclusion' | 'WarnDeprecationTrialMetadata' | 'WarnThirdPartyCookieHeuristic');
3323
3323
 
@@ -6051,7 +6051,7 @@ export namespace Protocol {
6051
6051
  /**
6052
6052
  * Pseudo element type.
6053
6053
  */
6054
- export type PseudoType = ('first-line' | 'first-letter' | 'check' | 'before' | 'after' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker');
6054
+ export type PseudoType = ('first-line' | 'first-letter' | 'check' | 'before' | 'after' | 'select-arrow' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-next-button' | 'scroll-prev-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker');
6055
6055
 
6056
6056
  /**
6057
6057
  * Shadow root type.