feat(webkit): bump to 1499 (#7001)

This commit is contained in:
Yury Semikhatsky 2021-06-11 09:35:48 -07:00 committed by GitHub
parent afa9d69b63
commit c903b04c7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 1 deletions

View file

@ -18,7 +18,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "1492", "revision": "1499",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"mac10.14": "1446" "mac10.14": "1446"

View file

@ -6935,6 +6935,26 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
*/ */
sameSite?: CookieSameSitePolicy; sameSite?: CookieSameSitePolicy;
} }
/**
* Name-value pair
*/
export interface NameValue {
name: string;
value: string;
}
/**
* Origin object
*/
export interface OriginStorage {
/**
* Origin.
*/
origin: string;
/**
* Storage entries.
*/
items: NameValue[];
}
/** /**
* Geolocation * Geolocation
*/ */
@ -7163,6 +7183,36 @@ 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.
*/ */
@ -8933,6 +8983,8 @@ 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;
@ -9226,6 +9278,8 @@ 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;