mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1914 (#27279)
This commit is contained in:
parent
471d12ac7b
commit
1bed74bc8b
@ -39,7 +39,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1912",
|
"revision": "1914",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
|||||||
@ -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.
|
* Composition due to association with an element with a "blend-mode" style.
|
||||||
*/
|
*/
|
||||||
blending?: boolean;
|
blending?: boolean;
|
||||||
|
/**
|
||||||
|
* Composition due to association with an element that is a backdrop root
|
||||||
|
*/
|
||||||
|
backdropRoot?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type layerTreeDidChangePayload = void;
|
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 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.
|
* 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;
|
"Page.updateScrollingState": Page.updateScrollingStateParameters;
|
||||||
"Playwright.enable": Playwright.enableParameters;
|
"Playwright.enable": Playwright.enableParameters;
|
||||||
"Playwright.disable": Playwright.disableParameters;
|
"Playwright.disable": Playwright.disableParameters;
|
||||||
|
"Playwright.getInfo": Playwright.getInfoParameters;
|
||||||
"Playwright.close": Playwright.closeParameters;
|
"Playwright.close": Playwright.closeParameters;
|
||||||
"Playwright.createContext": Playwright.createContextParameters;
|
"Playwright.createContext": Playwright.createContextParameters;
|
||||||
"Playwright.deleteContext": Playwright.deleteContextParameters;
|
"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;
|
"Page.updateScrollingState": Page.updateScrollingStateReturnValue;
|
||||||
"Playwright.enable": Playwright.enableReturnValue;
|
"Playwright.enable": Playwright.enableReturnValue;
|
||||||
"Playwright.disable": Playwright.disableReturnValue;
|
"Playwright.disable": Playwright.disableReturnValue;
|
||||||
|
"Playwright.getInfo": Playwright.getInfoReturnValue;
|
||||||
"Playwright.close": Playwright.closeReturnValue;
|
"Playwright.close": Playwright.closeReturnValue;
|
||||||
"Playwright.createContext": Playwright.createContextReturnValue;
|
"Playwright.createContext": Playwright.createContextReturnValue;
|
||||||
"Playwright.deleteContext": Playwright.deleteContextReturnValue;
|
"Playwright.deleteContext": Playwright.deleteContextReturnValue;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user