Skip to content

Commit 879e804

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent e8cd2d7 commit 879e804

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

gen-src/ChromeDevtoolsProtocol/Model/DOMSnapshot/DocumentSnapshot.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,17 @@ final class DocumentSnapshot implements \JsonSerializable
8282
public $textBoxes;
8383

8484
/**
85-
* Scroll offsets.
85+
* Horizontal scroll offset.
8686
*
8787
* @var int|float|null
8888
*/
8989
public $scrollOffsetX;
9090

91-
/** @var int|float|null */
91+
/**
92+
* Vertical scroll offset.
93+
*
94+
* @var int|float|null
95+
*/
9296
public $scrollOffsetY;
9397

9498

gen-src/ChromeDevtoolsProtocol/Model/DOMSnapshot/LayoutTreeSnapshot.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace ChromeDevtoolsProtocol\Model\DOMSnapshot;
44

55
/**
6-
* Details of an element in the DOM tree with a LayoutObject.
6+
* Table of details of an element in the DOM tree with a LayoutObject.
77
*
88
* @generated This file has been auto-generated, do not edit.
99
*
@@ -12,14 +12,14 @@
1212
final class LayoutTreeSnapshot implements \JsonSerializable
1313
{
1414
/**
15-
* The index of the related DOM node in the `domNodes` array returned by `getSnapshot`.
15+
* Index of the corresponding node in the `NodeTreeSnapshot` array returned by `captureSnapshot`.
1616
*
1717
* @var int[]
1818
*/
1919
public $nodeIndex;
2020

2121
/**
22-
* Index into the `computedStyles` array returned by `captureSnapshot`.
22+
* Array of indexes specifying computed style strings, filtered according to the `computedStyles` parameter passed to `captureSnapshot`.
2323
*
2424
* @var int[][]
2525
*/

gen-src/ChromeDevtoolsProtocol/Model/DOMSnapshot/TextBoxSnapshot.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace ChromeDevtoolsProtocol\Model\DOMSnapshot;
44

55
/**
6-
* Details of post layout rendered text positions. The exact layout should not be regarded as stable and may change between versions.
6+
* Table of details of the post layout rendered text positions. The exact layout should not be regarded as stable and may change between versions.
77
*
88
* @generated This file has been auto-generated, do not edit.
99
*
@@ -12,7 +12,7 @@
1212
final class TextBoxSnapshot implements \JsonSerializable
1313
{
1414
/**
15-
* Intex of th elayout tree node that owns this box collection.
15+
* Index of the layout tree node that owns this box collection.
1616
*
1717
* @var int[]
1818
*/

protocol.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6507,12 +6507,13 @@
65076507
},
65086508
{
65096509
"name": "scrollOffsetX",
6510-
"description": "Scroll offsets.",
6510+
"description": "Horizontal scroll offset.",
65116511
"optional": true,
65126512
"type": "number"
65136513
},
65146514
{
65156515
"name": "scrollOffsetY",
6516+
"description": "Vertical scroll offset.",
65166517
"optional": true,
65176518
"type": "number"
65186519
}
@@ -6635,20 +6636,20 @@
66356636
},
66366637
{
66376638
"id": "LayoutTreeSnapshot",
6638-
"description": "Details of an element in the DOM tree with a LayoutObject.",
6639+
"description": "Table of details of an element in the DOM tree with a LayoutObject.",
66396640
"type": "object",
66406641
"properties": [
66416642
{
66426643
"name": "nodeIndex",
6643-
"description": "The index of the related DOM node in the `domNodes` array returned by `getSnapshot`.",
6644+
"description": "Index of the corresponding node in the `NodeTreeSnapshot` array returned by `captureSnapshot`.",
66446645
"type": "array",
66456646
"items": {
66466647
"type": "integer"
66476648
}
66486649
},
66496650
{
66506651
"name": "styles",
6651-
"description": "Index into the `computedStyles` array returned by `captureSnapshot`.",
6652+
"description": "Array of indexes specifying computed style strings, filtered according to the `computedStyles` parameter passed to `captureSnapshot`.",
66526653
"type": "array",
66536654
"items": {
66546655
"$ref": "ArrayOfStrings"
@@ -6679,12 +6680,12 @@
66796680
},
66806681
{
66816682
"id": "TextBoxSnapshot",
6682-
"description": "Details of post layout rendered text positions. The exact layout should not be regarded as stable and may change between versions.",
6683+
"description": "Table of details of the post layout rendered text positions. The exact layout should not be regarded as stable and may change between versions.",
66836684
"type": "object",
66846685
"properties": [
66856686
{
66866687
"name": "layoutIndex",
6687-
"description": "Intex of th elayout tree node that owns this box collection.",
6688+
"description": "Index of the layout tree node that owns this box collection.",
66886689
"type": "array",
66896690
"items": {
66906691
"type": "integer"

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
d5302cae56bd421515dbc07c0f1729a3 protocol.json
1+
88c6be1f34e15dfc93dc42692204ceca protocol.json

0 commit comments

Comments
 (0)