feat(webkit): roll to r2132 (#34697)
This commit is contained in:
parent
5d500dde22
commit
71c7f465a0
|
|
@ -39,7 +39,7 @@
|
|||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "2130",
|
||||
"revision": "2132",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"debian11-x64": "2105",
|
||||
|
|
|
|||
|
|
@ -7781,6 +7781,18 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||
}
|
||||
export type setIgnoreCertificateErrorsReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Changes page zoom factor.
|
||||
*/
|
||||
export type setPageZoomFactorParameters = {
|
||||
/**
|
||||
* Unique identifier of the page proxy.
|
||||
*/
|
||||
pageProxyId: PageProxyID;
|
||||
zoomFactor: number;
|
||||
}
|
||||
export type setPageZoomFactorReturnValue = {
|
||||
}
|
||||
/**
|
||||
* Returns all cookies in the given browser context.
|
||||
*/
|
||||
|
|
@ -9658,6 +9670,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||
"Playwright.grantFileReadAccess": Playwright.grantFileReadAccessParameters;
|
||||
"Playwright.takePageScreenshot": Playwright.takePageScreenshotParameters;
|
||||
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsParameters;
|
||||
"Playwright.setPageZoomFactor": Playwright.setPageZoomFactorParameters;
|
||||
"Playwright.getAllCookies": Playwright.getAllCookiesParameters;
|
||||
"Playwright.setCookies": Playwright.setCookiesParameters;
|
||||
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesParameters;
|
||||
|
|
@ -9970,6 +9983,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||
"Playwright.grantFileReadAccess": Playwright.grantFileReadAccessReturnValue;
|
||||
"Playwright.takePageScreenshot": Playwright.takePageScreenshotReturnValue;
|
||||
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsReturnValue;
|
||||
"Playwright.setPageZoomFactor": Playwright.setPageZoomFactorReturnValue;
|
||||
"Playwright.getAllCookies": Playwright.getAllCookiesReturnValue;
|
||||
"Playwright.setCookies": Playwright.setCookiesReturnValue;
|
||||
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesReturnValue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue