feat(webkit): roll to r1799 (#21045)

This commit is contained in:
Playwright Service 2023-02-20 23:18:22 -08:00 committed by GitHub
parent d0308d1924
commit cda830645d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -33,7 +33,7 @@
},
{
"name": "webkit",
"revision": "1798",
"revision": "1799",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",

View File

@ -2909,6 +2909,10 @@ export module Protocol {
* If provided, used to configure a flex overlay shown during element selection. This overrides DOM.showFlexOverlay.
*/
flexOverlayConfig?: FlexOverlayConfig;
/**
* Whether the rulers should be shown during element selection. This overrides Page.setShowRulers.
*/
showRulers?: boolean;
}
export type highlightSelectorReturnValue = {
}
@ -2936,6 +2940,10 @@ export module Protocol {
* If provided, used to configure a flex overlay shown during element selection. This overrides DOM.showFlexOverlay.
*/
flexOverlayConfig?: FlexOverlayConfig;
/**
* Whether the rulers should be shown during element selection. This overrides Page.setShowRulers.
*/
showRulers?: boolean;
}
export type highlightNodeReturnValue = {
}
@ -2953,6 +2961,10 @@ export module Protocol {
* If provided, used to configure a flex overlay shown during element selection. This overrides DOM.showFlexOverlay.
*/
flexOverlayConfig?: FlexOverlayConfig;
/**
* Whether the rulers should be shown during element selection. This overrides Page.setShowRulers.
*/
showRulers?: boolean;
}
export type highlightNodeListReturnValue = {
}