Skip to content

Commit 1c0d76c

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent 913c6e8 commit 1c0d76c

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

gen-src/ChromeDevtoolsProtocol/Model/CSS/GetMatchedStylesForNodeResponse.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ final class GetMatchedStylesForNodeResponse implements \JsonSerializable
6060
*/
6161
public $cssKeyframesRules;
6262

63+
/**
64+
* Id of the first parent element that does not have display: contents.
65+
*
66+
* @var int
67+
*/
68+
public $parentLayoutNodeId;
69+
6370

6471
/**
6572
* @param object $data
@@ -104,6 +111,9 @@ public static function fromJson($data)
104111
$instance->cssKeyframesRules[] = CSSKeyframesRule::fromJson($item);
105112
}
106113
}
114+
if (isset($data->parentLayoutNodeId)) {
115+
$instance->parentLayoutNodeId = (int)$data->parentLayoutNodeId;
116+
}
107117
return $instance;
108118
}
109119

@@ -147,6 +157,9 @@ public function jsonSerialize()
147157
$data->cssKeyframesRules[] = $item->jsonSerialize();
148158
}
149159
}
160+
if ($this->parentLayoutNodeId !== null) {
161+
$data->parentLayoutNodeId = $this->parentLayoutNodeId;
162+
}
150163
return $data;
151164
}
152165
}

protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4296,6 +4296,13 @@
42964296
"items": {
42974297
"$ref": "CSSKeyframesRule"
42984298
}
4299+
},
4300+
{
4301+
"name": "parentLayoutNodeId",
4302+
"description": "Id of the first parent element that does not have display: contents.",
4303+
"experimental": true,
4304+
"optional": true,
4305+
"$ref": "DOM.NodeId"
42994306
}
43004307
]
43014308
},

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3317c93c2f6f1b8944b857b6ecd6a3e5 protocol.json
1+
56875dea148aabde042724b4fa21073e protocol.json

0 commit comments

Comments
 (0)