devtools-protocol 0.0.1019158 → 0.0.1022601

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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1019158",
3
+ "version": "0.0.1022601",
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
@@ -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 {