feat(webkit): roll to r1592 (#11261)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
This commit is contained in:
github-actions[bot] 2022-01-10 05:02:07 -08:00 committed by GitHub
parent 2a975e2475
commit d31f13468a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 36 deletions

View file

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

View file

@ -7256,36 +7256,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
}
export type deleteAllCookiesReturnValue = {
}
/**
* Returns all local storage data in the given browser context.
*/
export type getLocalStorageDataParameters = {
/**
* Browser context id.
*/
browserContextId?: ContextID;
}
export type getLocalStorageDataReturnValue = {
/**
* Local storage data.
*/
origins: OriginStorage[];
}
/**
* Populates local storage data in the given browser context.
*/
export type setLocalStorageDataParameters = {
/**
* Browser context id.
*/
browserContextId?: ContextID;
/**
* Local storage data.
*/
origins: OriginStorage[];
}
export type setLocalStorageDataReturnValue = {
}
/**
* Overrides the geolocation position or error.
*/
@ -9068,8 +9038,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Playwright.getAllCookies": Playwright.getAllCookiesParameters;
"Playwright.setCookies": Playwright.setCookiesParameters;
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesParameters;
"Playwright.getLocalStorageData": Playwright.getLocalStorageDataParameters;
"Playwright.setLocalStorageData": Playwright.setLocalStorageDataParameters;
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideParameters;
"Playwright.setLanguages": Playwright.setLanguagesParameters;
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters;
@ -9368,8 +9336,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Playwright.getAllCookies": Playwright.getAllCookiesReturnValue;
"Playwright.setCookies": Playwright.setCookiesReturnValue;
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesReturnValue;
"Playwright.getLocalStorageData": Playwright.getLocalStorageDataReturnValue;
"Playwright.setLocalStorageData": Playwright.setLocalStorageDataReturnValue;
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideReturnValue;
"Playwright.setLanguages": Playwright.setLanguagesReturnValue;
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;

View file

@ -39,7 +39,7 @@ it('should handle nested frames', async ({ page, server }) => {
});
it('should get frame box', async ({ page, browserName }) => {
it.fail(browserName === 'webkit', 'https://github.com/microsoft/playwright/issues/10977');
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/10977' });
await page.setViewportSize({ width: 200, height: 200 });
await page.setContent(`<style>
body {