feat(webkit): roll to r2027
This commit is contained in:
parent
98637ea5b5
commit
3d696b609e
|
|
@ -27,7 +27,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "2022",
|
"revision": "2027",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
|
|
||||||
|
|
@ -4584,6 +4584,14 @@ might return multiple quads for inline nodes.
|
||||||
}
|
}
|
||||||
export type resetPermissionsReturnValue = {
|
export type resetPermissionsReturnValue = {
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Overrides window.orientation with provided value.
|
||||||
|
*/
|
||||||
|
export type setOrientationOverrideParameters = {
|
||||||
|
angle?: number;
|
||||||
|
}
|
||||||
|
export type setOrientationOverrideReturnValue = {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -7351,14 +7359,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
}
|
}
|
||||||
export type crashReturnValue = {
|
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.
|
* Ensures that the scroll regions are up to date.
|
||||||
*/
|
*/
|
||||||
|
|
@ -9509,6 +9509,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
"Emulation.setActiveAndFocused": Emulation.setActiveAndFocusedParameters;
|
"Emulation.setActiveAndFocused": Emulation.setActiveAndFocusedParameters;
|
||||||
"Emulation.grantPermissions": Emulation.grantPermissionsParameters;
|
"Emulation.grantPermissions": Emulation.grantPermissionsParameters;
|
||||||
"Emulation.resetPermissions": Emulation.resetPermissionsParameters;
|
"Emulation.resetPermissions": Emulation.resetPermissionsParameters;
|
||||||
|
"Emulation.setOrientationOverride": Emulation.setOrientationOverrideParameters;
|
||||||
"Heap.enable": Heap.enableParameters;
|
"Heap.enable": Heap.enableParameters;
|
||||||
"Heap.disable": Heap.disableParameters;
|
"Heap.disable": Heap.disableParameters;
|
||||||
"Heap.gc": Heap.gcParameters;
|
"Heap.gc": Heap.gcParameters;
|
||||||
|
|
@ -9591,7 +9592,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
"Page.createUserWorld": Page.createUserWorldParameters;
|
"Page.createUserWorld": Page.createUserWorldParameters;
|
||||||
"Page.setBypassCSP": Page.setBypassCSPParameters;
|
"Page.setBypassCSP": Page.setBypassCSPParameters;
|
||||||
"Page.crash": Page.crashParameters;
|
"Page.crash": Page.crashParameters;
|
||||||
"Page.setOrientationOverride": Page.setOrientationOverrideParameters;
|
|
||||||
"Page.updateScrollingState": Page.updateScrollingStateParameters;
|
"Page.updateScrollingState": Page.updateScrollingStateParameters;
|
||||||
"Playwright.enable": Playwright.enableParameters;
|
"Playwright.enable": Playwright.enableParameters;
|
||||||
"Playwright.disable": Playwright.disableParameters;
|
"Playwright.disable": Playwright.disableParameters;
|
||||||
|
|
@ -9820,6 +9820,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
"Emulation.setActiveAndFocused": Emulation.setActiveAndFocusedReturnValue;
|
"Emulation.setActiveAndFocused": Emulation.setActiveAndFocusedReturnValue;
|
||||||
"Emulation.grantPermissions": Emulation.grantPermissionsReturnValue;
|
"Emulation.grantPermissions": Emulation.grantPermissionsReturnValue;
|
||||||
"Emulation.resetPermissions": Emulation.resetPermissionsReturnValue;
|
"Emulation.resetPermissions": Emulation.resetPermissionsReturnValue;
|
||||||
|
"Emulation.setOrientationOverride": Emulation.setOrientationOverrideReturnValue;
|
||||||
"Heap.enable": Heap.enableReturnValue;
|
"Heap.enable": Heap.enableReturnValue;
|
||||||
"Heap.disable": Heap.disableReturnValue;
|
"Heap.disable": Heap.disableReturnValue;
|
||||||
"Heap.gc": Heap.gcReturnValue;
|
"Heap.gc": Heap.gcReturnValue;
|
||||||
|
|
@ -9902,7 +9903,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
"Page.createUserWorld": Page.createUserWorldReturnValue;
|
"Page.createUserWorld": Page.createUserWorldReturnValue;
|
||||||
"Page.setBypassCSP": Page.setBypassCSPReturnValue;
|
"Page.setBypassCSP": Page.setBypassCSPReturnValue;
|
||||||
"Page.crash": Page.crashReturnValue;
|
"Page.crash": Page.crashReturnValue;
|
||||||
"Page.setOrientationOverride": Page.setOrientationOverrideReturnValue;
|
|
||||||
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
|
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
|
||||||
"Playwright.enable": Playwright.enableReturnValue;
|
"Playwright.enable": Playwright.enableReturnValue;
|
||||||
"Playwright.disable": Playwright.disableReturnValue;
|
"Playwright.disable": Playwright.disableReturnValue;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue