diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index c1b41fe90e..f6116fab1d 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -23,11 +23,10 @@ }, { "name": "webkit", - "revision": "1617", + "revision": "1616", "installByDefault": true, "revisionOverrides": { - "mac10.14": "1446", - "mac10.15": "1616" + "mac10.14": "1446" } }, { diff --git a/packages/playwright-core/src/server/webkit/protocol.d.ts b/packages/playwright-core/src/server/webkit/protocol.d.ts index ac6981ea96..adeca1940f 100644 --- a/packages/playwright-core/src/server/webkit/protocol.d.ts +++ b/packages/playwright-core/src/server/webkit/protocol.d.ts @@ -2921,10 +2921,6 @@ export module Protocol { * The primary color to use for the flex overlay. */ flexColor: RGBAColor; - /** - * Show labels for flex order. If not specified, the default value is false. - */ - showOrderNumbers?: boolean; } export type showFlexOverlayReturnValue = { } @@ -4093,14 +4089,6 @@ might return multiple quads for inline nodes. } export type setShouldBlackboxURLReturnValue = { } - /** - * Sets whether evaluation of breakpoint conditions, ignore counts, and actions happen at the location of the breakpoint or are deferred due to blackboxing. - */ - export type setBlackboxBreakpointEvaluationsParameters = { - blackboxBreakpointEvaluations: boolean; - } - export type setBlackboxBreakpointEvaluationsReturnValue = { - } } /** @@ -8990,7 +8978,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Debugger.setPauseForInternalScripts": Debugger.setPauseForInternalScriptsParameters; "Debugger.evaluateOnCallFrame": Debugger.evaluateOnCallFrameParameters; "Debugger.setShouldBlackboxURL": Debugger.setShouldBlackboxURLParameters; - "Debugger.setBlackboxBreakpointEvaluations": Debugger.setBlackboxBreakpointEvaluationsParameters; "Dialog.enable": Dialog.enableParameters; "Dialog.disable": Dialog.disableParameters; "Dialog.handleJavaScriptDialog": Dialog.handleJavaScriptDialogParameters; @@ -9291,7 +9278,6 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the "Debugger.setPauseForInternalScripts": Debugger.setPauseForInternalScriptsReturnValue; "Debugger.evaluateOnCallFrame": Debugger.evaluateOnCallFrameReturnValue; "Debugger.setShouldBlackboxURL": Debugger.setShouldBlackboxURLReturnValue; - "Debugger.setBlackboxBreakpointEvaluations": Debugger.setBlackboxBreakpointEvaluationsReturnValue; "Dialog.enable": Dialog.enableReturnValue; "Dialog.disable": Dialog.disableReturnValue; "Dialog.handleJavaScriptDialog": Dialog.handleJavaScriptDialogReturnValue;