feat(webkit): roll to r2132 (#34697)

This commit is contained in:
Playwright Service 2025-02-10 11:36:45 -08:00 committed by GitHub
parent 5d500dde22
commit 71c7f465a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 1 deletions

View file

@ -39,7 +39,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "2130", "revision": "2132",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"debian11-x64": "2105", "debian11-x64": "2105",

View file

@ -7781,6 +7781,18 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
} }
export type setIgnoreCertificateErrorsReturnValue = { 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. * 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.grantFileReadAccess": Playwright.grantFileReadAccessParameters;
"Playwright.takePageScreenshot": Playwright.takePageScreenshotParameters; "Playwright.takePageScreenshot": Playwright.takePageScreenshotParameters;
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsParameters; "Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsParameters;
"Playwright.setPageZoomFactor": Playwright.setPageZoomFactorParameters;
"Playwright.getAllCookies": Playwright.getAllCookiesParameters; "Playwright.getAllCookies": Playwright.getAllCookiesParameters;
"Playwright.setCookies": Playwright.setCookiesParameters; "Playwright.setCookies": Playwright.setCookiesParameters;
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesParameters; "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.grantFileReadAccess": Playwright.grantFileReadAccessReturnValue;
"Playwright.takePageScreenshot": Playwright.takePageScreenshotReturnValue; "Playwright.takePageScreenshot": Playwright.takePageScreenshotReturnValue;
"Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsReturnValue; "Playwright.setIgnoreCertificateErrors": Playwright.setIgnoreCertificateErrorsReturnValue;
"Playwright.setPageZoomFactor": Playwright.setPageZoomFactorReturnValue;
"Playwright.getAllCookies": Playwright.getAllCookiesReturnValue; "Playwright.getAllCookies": Playwright.getAllCookiesReturnValue;
"Playwright.setCookies": Playwright.setCookiesReturnValue; "Playwright.setCookies": Playwright.setCookiesReturnValue;
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesReturnValue; "Playwright.deleteAllCookies": Playwright.deleteAllCookiesReturnValue;