feat(webkit): roll to r2029

This commit is contained in:
github-actions 2024-06-11 19:22:42 +00:00
parent 8fd0a56427
commit af34968d24
2 changed files with 15 additions and 11 deletions

View file

@ -27,7 +27,7 @@
},
{
"name": "webkit",
"revision": "2022",
"revision": "2029",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View file

@ -2122,6 +2122,10 @@ export module Protocol {
* Array of <code>DOMNode</code> ids of any children marked as selected.
*/
selectedChildNodeIds?: NodeId[];
/**
* On / off state of switch form controls.
*/
switchState?: "off"|"on";
}
/**
* A structure holding an RGBA color.
@ -4584,6 +4588,14 @@ might return multiple quads for inline nodes.
}
export type resetPermissionsReturnValue = {
}
/**
* Overrides window.orientation with provided value.
*/
export type setOrientationOverrideParameters = {
angle?: number;
}
export type setOrientationOverrideReturnValue = {
}
}
/**
@ -7351,14 +7363,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
}
export type crashReturnValue = {
}
/**
* Overrides window.orientation with provided value.
*/
export type setOrientationOverrideParameters = {
angle?: number;
}
export type setOrientationOverrideReturnValue = {
}
/**
* Ensures that the scroll regions are up to date.
*/
@ -9509,6 +9513,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Emulation.setActiveAndFocused": Emulation.setActiveAndFocusedParameters;
"Emulation.grantPermissions": Emulation.grantPermissionsParameters;
"Emulation.resetPermissions": Emulation.resetPermissionsParameters;
"Emulation.setOrientationOverride": Emulation.setOrientationOverrideParameters;
"Heap.enable": Heap.enableParameters;
"Heap.disable": Heap.disableParameters;
"Heap.gc": Heap.gcParameters;
@ -9591,7 +9596,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.createUserWorld": Page.createUserWorldParameters;
"Page.setBypassCSP": Page.setBypassCSPParameters;
"Page.crash": Page.crashParameters;
"Page.setOrientationOverride": Page.setOrientationOverrideParameters;
"Page.updateScrollingState": Page.updateScrollingStateParameters;
"Playwright.enable": Playwright.enableParameters;
"Playwright.disable": Playwright.disableParameters;
@ -9820,6 +9824,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Emulation.setActiveAndFocused": Emulation.setActiveAndFocusedReturnValue;
"Emulation.grantPermissions": Emulation.grantPermissionsReturnValue;
"Emulation.resetPermissions": Emulation.resetPermissionsReturnValue;
"Emulation.setOrientationOverride": Emulation.setOrientationOverrideReturnValue;
"Heap.enable": Heap.enableReturnValue;
"Heap.disable": Heap.disableReturnValue;
"Heap.gc": Heap.gcReturnValue;
@ -9902,7 +9907,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.createUserWorld": Page.createUserWorldReturnValue;
"Page.setBypassCSP": Page.setBypassCSPReturnValue;
"Page.crash": Page.crashReturnValue;
"Page.setOrientationOverride": Page.setOrientationOverrideReturnValue;
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
"Playwright.enable": Playwright.enableReturnValue;
"Playwright.disable": Playwright.disableReturnValue;