feat(webkit): bump to 1617 (#12738)

This commit is contained in:
Yury Semikhatsky 2022-03-14 15:11:21 -07:00 committed by GitHub
parent 01beb6310a
commit 77824ee19e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 2 deletions

View file

@ -23,10 +23,11 @@
},
{
"name": "webkit",
"revision": "1616",
"revision": "1617",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"
"mac10.14": "1446",
"mac10.15": "1616"
}
},
{

View file

@ -2921,6 +2921,10 @@ 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 = {
}
@ -4089,6 +4093,14 @@ 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 = {
}
}
/**
@ -8978,6 +8990,7 @@ 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;
@ -9278,6 +9291,7 @@ 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;