mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1712 (#16933)
This commit is contained in:
parent
077b8a9289
commit
77f6b25941
@ -33,7 +33,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1707",
|
"revision": "1712",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
|||||||
@ -910,7 +910,7 @@ export module Protocol {
|
|||||||
/**
|
/**
|
||||||
* Relevant layout information about the node. Things not in this list are not important to Web Inspector.
|
* 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.
|
* 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.
|
* Id of the node to get listeners for.
|
||||||
*/
|
*/
|
||||||
nodeId: NodeId;
|
nodeId: NodeId;
|
||||||
|
/**
|
||||||
|
* Controls whether ancestor event listeners are included. Defaults to true.
|
||||||
|
*/
|
||||||
|
includeAncestors?: boolean;
|
||||||
}
|
}
|
||||||
export type getEventListenersForNodeReturnValue = {
|
export type getEventListenersForNodeReturnValue = {
|
||||||
/**
|
/**
|
||||||
@ -2974,6 +2978,10 @@ export module Protocol {
|
|||||||
* Source element handle.
|
* Source element handle.
|
||||||
*/
|
*/
|
||||||
objectId?: Runtime.RemoteObjectId;
|
objectId?: Runtime.RemoteObjectId;
|
||||||
|
/**
|
||||||
|
* Id of the frame to resolve the owner element.
|
||||||
|
*/
|
||||||
|
frameId?: Network.FrameId;
|
||||||
/**
|
/**
|
||||||
* Specifies in which execution context to adopt to.
|
* Specifies in which execution context to adopt to.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user