mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): bump to 1500 (#7224)
This commit is contained in:
parent
deec8a4adb
commit
79b2e5ddeb
@ -23,7 +23,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1499",
|
"revision": "1500",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446"
|
"mac10.14": "1446"
|
||||||
|
|||||||
@ -2219,6 +2219,15 @@ export module Protocol {
|
|||||||
*/
|
*/
|
||||||
nodeId: NodeId;
|
nodeId: NodeId;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Fired when a detached DOM node is about to be destroyed. Currently, this event will only be fired when a DOM node that is detached is about to be destructed.
|
||||||
|
*/
|
||||||
|
export type willDestroyDOMNodePayload = {
|
||||||
|
/**
|
||||||
|
* Id of the node that will be destroyed.
|
||||||
|
*/
|
||||||
|
nodeId: NodeId;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Called when shadow root is pushed into the element.
|
* Called when shadow root is pushed into the element.
|
||||||
*/
|
*/
|
||||||
@ -8650,6 +8659,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
"DOM.childNodeCountUpdated": DOM.childNodeCountUpdatedPayload;
|
"DOM.childNodeCountUpdated": DOM.childNodeCountUpdatedPayload;
|
||||||
"DOM.childNodeInserted": DOM.childNodeInsertedPayload;
|
"DOM.childNodeInserted": DOM.childNodeInsertedPayload;
|
||||||
"DOM.childNodeRemoved": DOM.childNodeRemovedPayload;
|
"DOM.childNodeRemoved": DOM.childNodeRemovedPayload;
|
||||||
|
"DOM.willDestroyDOMNode": DOM.willDestroyDOMNodePayload;
|
||||||
"DOM.shadowRootPushed": DOM.shadowRootPushedPayload;
|
"DOM.shadowRootPushed": DOM.shadowRootPushedPayload;
|
||||||
"DOM.shadowRootPopped": DOM.shadowRootPoppedPayload;
|
"DOM.shadowRootPopped": DOM.shadowRootPoppedPayload;
|
||||||
"DOM.customElementStateChanged": DOM.customElementStateChangedPayload;
|
"DOM.customElementStateChanged": DOM.customElementStateChangedPayload;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user