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:
parent
2a975e2475
commit
d31f13468a
|
|
@ -23,7 +23,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1588",
|
"revision": "1592",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446"
|
"mac10.14": "1446"
|
||||||
|
|
|
||||||
|
|
@ -7256,36 +7256,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
||||||
}
|
}
|
||||||
export type deleteAllCookiesReturnValue = {
|
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.
|
* 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.getAllCookies": Playwright.getAllCookiesParameters;
|
||||||
"Playwright.setCookies": Playwright.setCookiesParameters;
|
"Playwright.setCookies": Playwright.setCookiesParameters;
|
||||||
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesParameters;
|
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesParameters;
|
||||||
"Playwright.getLocalStorageData": Playwright.getLocalStorageDataParameters;
|
|
||||||
"Playwright.setLocalStorageData": Playwright.setLocalStorageDataParameters;
|
|
||||||
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideParameters;
|
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideParameters;
|
||||||
"Playwright.setLanguages": Playwright.setLanguagesParameters;
|
"Playwright.setLanguages": Playwright.setLanguagesParameters;
|
||||||
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorParameters;
|
"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.getAllCookies": Playwright.getAllCookiesReturnValue;
|
||||||
"Playwright.setCookies": Playwright.setCookiesReturnValue;
|
"Playwright.setCookies": Playwright.setCookiesReturnValue;
|
||||||
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesReturnValue;
|
"Playwright.deleteAllCookies": Playwright.deleteAllCookiesReturnValue;
|
||||||
"Playwright.getLocalStorageData": Playwright.getLocalStorageDataReturnValue;
|
|
||||||
"Playwright.setLocalStorageData": Playwright.setLocalStorageDataReturnValue;
|
|
||||||
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideReturnValue;
|
"Playwright.setGeolocationOverride": Playwright.setGeolocationOverrideReturnValue;
|
||||||
"Playwright.setLanguages": Playwright.setLanguagesReturnValue;
|
"Playwright.setLanguages": Playwright.setLanguagesReturnValue;
|
||||||
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;
|
"Playwright.setDownloadBehavior": Playwright.setDownloadBehaviorReturnValue;
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ it('should handle nested frames', async ({ page, server }) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should get frame box', async ({ page, browserName }) => {
|
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.setViewportSize({ width: 200, height: 200 });
|
||||||
await page.setContent(`<style>
|
await page.setContent(`<style>
|
||||||
body {
|
body {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue