devtools-protocol 0.0.1019158 → 0.0.1024111

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # devtools-protocol
1
+ # devtools-protocol [![devtools-protocol on npm](https://img.shields.io/npm/v/devtools-protocol)](https://www.npmjs.com/package/devtools-protocol)
2
2
 
3
3
  :warning:
4
4
  This repository is related to Chrome DevTools Protocol, but does not track issues regarding its definition or implementation.
@@ -8,5 +8,4 @@ Use the [protocol viewer](https://chromedevtools.github.io/devtools-protocol/) f
8
8
 
9
9
  TypeScript definitions for the protocol's types are available in ['types/protocol.d.ts'](https://github.com/ChromeDevTools/devtools-protocol/tree/master/types). Mappings from Commands and events to these types are available in either generated `DomainApi` style in [`types/protocol-proxy-api.d.ts`](https://github.com/ChromeDevTools/devtools-protocol/blob/master/types/protocol-proxy-api.d.ts) or in simple name-to-type-interface style in [`types/protocol-mapping.d.ts`](https://github.com/ChromeDevTools/devtools-protocol/blob/master/types/protocol-mapping.d.ts).
10
10
 
11
- Also, this repo is published as the [`devtools-protocol`](https://www.npmjs.com/package/devtools-protocol) NPM module.
12
- ![npm](https://img.shields.io/npm/v/devtools-protocol.svg?style=flat-square)
11
+ Also, this repo is published as the [`devtools-protocol`](https://www.npmjs.com/package/devtools-protocol) npm module.
@@ -3822,6 +3822,13 @@
3822
3822
  "items": {
3823
3823
  "$ref": "CSSKeyframesRule"
3824
3824
  }
3825
+ },
3826
+ {
3827
+ "name": "parentLayoutNodeId",
3828
+ "description": "Id of the first parent element that does not have display: contents.",
3829
+ "experimental": true,
3830
+ "optional": true,
3831
+ "$ref": "DOM.NodeId"
3825
3832
  }
3826
3833
  ]
3827
3834
  },
@@ -15187,6 +15194,7 @@
15187
15194
  "screen-wake-lock",
15188
15195
  "serial",
15189
15196
  "shared-autofill",
15197
+ "shared-storage",
15190
15198
  "storage-access-api",
15191
15199
  "sync-xhr",
15192
15200
  "trust-token-redemption",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1019158",
3
+ "version": "0.0.1024111",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1811,6 +1811,8 @@ experimental domain CSS
1811
1811
  optional array of InheritedPseudoElementMatches inheritedPseudoElements
1812
1812
  # A list of CSS keyframed animations matching this node.
1813
1813
  optional array of CSSKeyframesRule cssKeyframesRules
1814
+ # Id of the first parent element that does not have display: contents.
1815
+ experimental optional DOM.NodeId parentLayoutNodeId
1814
1816
 
1815
1817
  # Returns all media queries parsed by the rendering engine.
1816
1818
  command getMediaQueries
@@ -7107,6 +7109,7 @@ domain Page
7107
7109
  screen-wake-lock
7108
7110
  serial
7109
7111
  shared-autofill
7112
+ shared-storage
7110
7113
  storage-access-api
7111
7114
  sync-xhr
7112
7115
  trust-token-redemption
@@ -4854,6 +4854,10 @@ export namespace Protocol {
4854
4854
  * A list of CSS keyframed animations matching this node.
4855
4855
  */
4856
4856
  cssKeyframesRules?: CSSKeyframesRule[];
4857
+ /**
4858
+ * Id of the first parent element that does not have display: contents.
4859
+ */
4860
+ parentLayoutNodeId?: DOM.NodeId;
4857
4861
  }
4858
4862
 
4859
4863
  export interface GetMediaQueriesResponse {
@@ -12203,7 +12207,7 @@ export namespace Protocol {
12203
12207
  * All Permissions Policy features. This enum should match the one defined
12204
12208
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
12205
12209
  */
12206
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'federated-credentials' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12210
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'federated-credentials' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12207
12211
 
12208
12212
  /**
12209
12213
  * Reason for a permissions policy feature to be disabled.