devtools-protocol 0.0.1495869 → 0.0.1498597

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.
@@ -2089,7 +2089,8 @@
2089
2089
  "type": "string",
2090
2090
  "enum": [
2091
2091
  "BlockedFrameNavigation",
2092
- "BlockedSubresource"
2092
+ "BlockedSubresource",
2093
+ "NoisedCanvasReadback"
2093
2094
  ]
2094
2095
  },
2095
2096
  {
@@ -2106,6 +2107,12 @@
2106
2107
  "description": "Applies to BlockedFrameNavigation and BlockedSubresource issue types.",
2107
2108
  "optional": true,
2108
2109
  "$ref": "AffectedRequest"
2110
+ },
2111
+ {
2112
+ "name": "sourceCodeLocation",
2113
+ "description": "Applies to NoisedCanvasReadback issue type.",
2114
+ "optional": true,
2115
+ "$ref": "SourceCodeLocation"
2109
2116
  }
2110
2117
  ]
2111
2118
  },
@@ -5152,7 +5159,7 @@
5152
5159
  "parameters": [
5153
5160
  {
5154
5161
  "name": "values",
5155
- "description": "Substitution functions (var()/env()/attr()) and cascade-dependent\nkeywords (revert/revert-layer) do not work.",
5162
+ "description": "Cascade-dependent keywords (revert/revert-layer) do not work.",
5156
5163
  "type": "array",
5157
5164
  "items": {
5158
5165
  "type": "string"
@@ -6338,6 +6345,7 @@
6338
6345
  "before",
6339
6346
  "after",
6340
6347
  "picker-icon",
6348
+ "interest-hint",
6341
6349
  "marker",
6342
6350
  "backdrop",
6343
6351
  "column",
@@ -18425,6 +18433,7 @@
18425
18433
  "deferred-fetch",
18426
18434
  "deferred-fetch-minimal",
18427
18435
  "device-attributes",
18436
+ "digital-credentials-create",
18428
18437
  "digital-credentials-get",
18429
18438
  "direct-sockets",
18430
18439
  "direct-sockets-private",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1495869",
3
+ "version": "0.0.1498597",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1096,6 +1096,7 @@ experimental domain Audits
1096
1096
  enum
1097
1097
  BlockedFrameNavigation
1098
1098
  BlockedSubresource
1099
+ NoisedCanvasReadback
1099
1100
 
1100
1101
  # This issue warns about uses of APIs that may be considered misuse to
1101
1102
  # re-identify users.
@@ -1104,6 +1105,8 @@ experimental domain Audits
1104
1105
  UserReidentificationIssueType type
1105
1106
  # Applies to BlockedFrameNavigation and BlockedSubresource issue types.
1106
1107
  optional AffectedRequest request
1108
+ # Applies to NoisedCanvasReadback issue type.
1109
+ optional SourceCodeLocation sourceCodeLocation
1107
1110
 
1108
1111
  # A unique identifier for the type of issue. Each type may use one of the
1109
1112
  # optional fields in InspectorIssueDetails to convey more specific
@@ -2493,8 +2496,7 @@ experimental domain CSS
2493
2496
  # resolved even then, return the provided value without any changes.
2494
2497
  experimental command resolveValues
2495
2498
  parameters
2496
- # Substitution functions (var()/env()/attr()) and cascade-dependent
2497
- # keywords (revert/revert-layer) do not work.
2499
+ # Cascade-dependent keywords (revert/revert-layer) do not work.
2498
2500
  array of string values
2499
2501
  # Id of the node in whose context the expression is evaluated
2500
2502
  DOM.NodeId nodeId
@@ -3016,6 +3018,7 @@ domain DOM
3016
3018
  before
3017
3019
  after
3018
3020
  picker-icon
3021
+ interest-hint
3019
3022
  marker
3020
3023
  backdrop
3021
3024
  column
@@ -8686,6 +8689,7 @@ domain Page
8686
8689
  deferred-fetch
8687
8690
  deferred-fetch-minimal
8688
8691
  device-attributes
8692
+ digital-credentials-create
8689
8693
  digital-credentials-get
8690
8694
  direct-sockets
8691
8695
  direct-sockets-private
@@ -3851,7 +3851,7 @@ export namespace Protocol {
3851
3851
  propertyValue?: string;
3852
3852
  }
3853
3853
 
3854
- export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource');
3854
+ export type UserReidentificationIssueType = ('BlockedFrameNavigation' | 'BlockedSubresource' | 'NoisedCanvasReadback');
3855
3855
 
3856
3856
  /**
3857
3857
  * This issue warns about uses of APIs that may be considered misuse to
@@ -3863,6 +3863,10 @@ export namespace Protocol {
3863
3863
  * Applies to BlockedFrameNavigation and BlockedSubresource issue types.
3864
3864
  */
3865
3865
  request?: AffectedRequest;
3866
+ /**
3867
+ * Applies to NoisedCanvasReadback issue type.
3868
+ */
3869
+ sourceCodeLocation?: SourceCodeLocation;
3866
3870
  }
3867
3871
 
3868
3872
  /**
@@ -5888,8 +5892,7 @@ export namespace Protocol {
5888
5892
 
5889
5893
  export interface ResolveValuesRequest {
5890
5894
  /**
5891
- * Substitution functions (var()/env()/attr()) and cascade-dependent
5892
- * keywords (revert/revert-layer) do not work.
5895
+ * Cascade-dependent keywords (revert/revert-layer) do not work.
5893
5896
  */
5894
5897
  values: string[];
5895
5898
  /**
@@ -6568,7 +6571,7 @@ export namespace Protocol {
6568
6571
  /**
6569
6572
  * Pseudo element type.
6570
6573
  */
6571
- export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-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-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
6574
+ export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-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-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon');
6572
6575
 
6573
6576
  /**
6574
6577
  * Shadow root type.
@@ -14553,7 +14556,7 @@ export namespace Protocol {
14553
14556
  * in services/network/public/cpp/permissions_policy/permissions_policy_features.json5.
14554
14557
  * @experimental
14555
14558
  */
14556
- export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
14559
+ export type PermissionsPolicyFeature = ('accelerometer' | 'all-screens-capture' | 'ambient-light-sensor' | 'aria-notify' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'captured-surface-control' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-prefers-reduced-motion' | 'ch-prefers-reduced-transparency' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-high-entropy-values' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-form-factors' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'compute-pressure' | 'controlled-frame' | 'cross-origin-isolated' | 'deferred-fetch' | 'deferred-fetch-minimal' | 'device-attributes' | 'digital-credentials-create' | 'digital-credentials-get' | 'direct-sockets' | 'direct-sockets-private' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'fenced-unpartitioned-storage-read' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'language-detector' | 'language-model' | 'local-fonts' | 'local-network-access' | 'magnetometer' | 'media-playback-while-not-visible' | 'microphone' | 'midi' | 'on-device-speech-recognition' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'popins' | 'private-aggregation' | 'private-state-token-issuance' | 'private-state-token-redemption' | 'publickey-credentials-create' | 'publickey-credentials-get' | 'record-ad-auction-events' | 'rewriter' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'shared-storage-select-url' | 'smart-card' | 'speaker-selection' | 'storage-access' | 'sub-apps' | 'summarizer' | 'sync-xhr' | 'translator' | 'unload' | 'usb' | 'usb-unrestricted' | 'vertical-scroll' | 'web-app-installation' | 'web-printing' | 'web-share' | 'window-management' | 'writer' | 'xr-spatial-tracking');
14557
14560
 
14558
14561
  /**
14559
14562
  * Reason for a permissions policy feature to be disabled.