feat(webkit): roll to r1914 (#27279)

This commit is contained in:
Playwright Service 2023-10-02 11:36:23 -07:00 committed by GitHub
parent 471d12ac7b
commit 1bed74bc8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -39,7 +39,7 @@
},
{
"name": "webkit",
"revision": "1912",
"revision": "1914",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View File

@ -5247,6 +5247,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
* Composition due to association with an element with a "blend-mode" style.
*/
blending?: boolean;
/**
* Composition due to association with an element that is a backdrop root
*/
backdropRoot?: boolean;
}
export type layerTreeDidChangePayload = void;
@ -7462,6 +7466,14 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
}
export type disableReturnValue = {
}
export type getInfoParameters = {
}
export type getInfoReturnValue = {
/**
* Name of the operating system where the browser is running (macOS, Linux or Windows).
*/
os: string;
}
/**
* Close browser.
*/
@ -9471,6 +9483,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.updateScrollingState": Page.updateScrollingStateParameters;
"Playwright.enable": Playwright.enableParameters;
"Playwright.disable": Playwright.disableParameters;
"Playwright.getInfo": Playwright.getInfoParameters;
"Playwright.close": Playwright.closeParameters;
"Playwright.createContext": Playwright.createContextParameters;
"Playwright.deleteContext": Playwright.deleteContextParameters;
@ -9781,6 +9794,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
"Playwright.enable": Playwright.enableReturnValue;
"Playwright.disable": Playwright.disableReturnValue;
"Playwright.getInfo": Playwright.getInfoReturnValue;
"Playwright.close": Playwright.closeReturnValue;
"Playwright.createContext": Playwright.createContextReturnValue;
"Playwright.deleteContext": Playwright.deleteContextReturnValue;