feat(webkit): bump to 1500 (#7224)

This commit is contained in:
Yury Semikhatsky 2021-06-18 10:20:09 -07:00 committed by GitHub
parent deec8a4adb
commit 79b2e5ddeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1499",
"revision": "1500",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"

View File

@ -2219,6 +2219,15 @@ export module Protocol {
*/
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.
*/
@ -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.childNodeInserted": DOM.childNodeInsertedPayload;
"DOM.childNodeRemoved": DOM.childNodeRemovedPayload;
"DOM.willDestroyDOMNode": DOM.willDestroyDOMNodePayload;
"DOM.shadowRootPushed": DOM.shadowRootPushedPayload;
"DOM.shadowRootPopped": DOM.shadowRootPoppedPayload;
"DOM.customElementStateChanged": DOM.customElementStateChangedPayload;