feat(webkit): roll to r1712 (#16933)

This commit is contained in:
Playwright Service 2022-08-30 14:24:14 -07:00 committed by GitHub
parent 077b8a9289
commit 77f6b25941
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -33,7 +33,7 @@
},
{
"name": "webkit",
"revision": "1707",
"revision": "1712",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View File

@ -910,7 +910,7 @@ export module Protocol {
/**
* Relevant layout information about the node. Things not in this list are not important to Web Inspector.
*/
export type LayoutFlag = "rendered"|"flex"|"grid";
export type LayoutFlag = "rendered"|"flex"|"grid"|"event";
/**
* The mode for how layout context type changes are handled (default: <code>Observed</code>). <code>Observed</code> limits handling to those nodes already known to the frontend by other means (generally, this means the node is a visible item in the Elements tab). <code>All</code> informs the frontend of all layout context type changes and all nodes with a known layout context are sent to the frontend.
*/
@ -2557,6 +2557,10 @@ export module Protocol {
* Id of the node to get listeners for.
*/
nodeId: NodeId;
/**
* Controls whether ancestor event listeners are included. Defaults to true.
*/
includeAncestors?: boolean;
}
export type getEventListenersForNodeReturnValue = {
/**
@ -2974,6 +2978,10 @@ export module Protocol {
* Source element handle.
*/
objectId?: Runtime.RemoteObjectId;
/**
* Id of the frame to resolve the owner element.
*/
frameId?: Network.FrameId;
/**
* Specifies in which execution context to adopt to.
*/