feat(webkit): bump to 1617, freeze macOS 10.15 (#12790)
This commit is contained in:
parent
b6c001c6de
commit
1284ab8101
|
|
@ -23,10 +23,11 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1616",
|
"revision": "1617",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446"
|
"mac10.14": "1446",
|
||||||
|
"mac10.15": "1616"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2921,6 +2921,10 @@ export module Protocol {
|
||||||
* The primary color to use for the flex overlay.
|
* The primary color to use for the flex overlay.
|
||||||
*/
|
*/
|
||||||
flexColor: RGBAColor;
|
flexColor: RGBAColor;
|
||||||
|
/**
|
||||||
|
* Show labels for flex order. If not specified, the default value is false.
|
||||||
|
*/
|
||||||
|
showOrderNumbers?: boolean;
|
||||||
}
|
}
|
||||||
export type showFlexOverlayReturnValue = {
|
export type showFlexOverlayReturnValue = {
|
||||||
}
|
}
|
||||||
|
|
@ -4089,6 +4093,14 @@ might return multiple quads for inline nodes.
|
||||||
}
|
}
|
||||||
export type setShouldBlackboxURLReturnValue = {
|
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.setPauseForInternalScripts": Debugger.setPauseForInternalScriptsParameters;
|
||||||
"Debugger.evaluateOnCallFrame": Debugger.evaluateOnCallFrameParameters;
|
"Debugger.evaluateOnCallFrame": Debugger.evaluateOnCallFrameParameters;
|
||||||
"Debugger.setShouldBlackboxURL": Debugger.setShouldBlackboxURLParameters;
|
"Debugger.setShouldBlackboxURL": Debugger.setShouldBlackboxURLParameters;
|
||||||
|
"Debugger.setBlackboxBreakpointEvaluations": Debugger.setBlackboxBreakpointEvaluationsParameters;
|
||||||
"Dialog.enable": Dialog.enableParameters;
|
"Dialog.enable": Dialog.enableParameters;
|
||||||
"Dialog.disable": Dialog.disableParameters;
|
"Dialog.disable": Dialog.disableParameters;
|
||||||
"Dialog.handleJavaScriptDialog": Dialog.handleJavaScriptDialogParameters;
|
"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.setPauseForInternalScripts": Debugger.setPauseForInternalScriptsReturnValue;
|
||||||
"Debugger.evaluateOnCallFrame": Debugger.evaluateOnCallFrameReturnValue;
|
"Debugger.evaluateOnCallFrame": Debugger.evaluateOnCallFrameReturnValue;
|
||||||
"Debugger.setShouldBlackboxURL": Debugger.setShouldBlackboxURLReturnValue;
|
"Debugger.setShouldBlackboxURL": Debugger.setShouldBlackboxURLReturnValue;
|
||||||
|
"Debugger.setBlackboxBreakpointEvaluations": Debugger.setBlackboxBreakpointEvaluationsReturnValue;
|
||||||
"Dialog.enable": Dialog.enableReturnValue;
|
"Dialog.enable": Dialog.enableReturnValue;
|
||||||
"Dialog.disable": Dialog.disableReturnValue;
|
"Dialog.disable": Dialog.disableReturnValue;
|
||||||
"Dialog.handleJavaScriptDialog": Dialog.handleJavaScriptDialogReturnValue;
|
"Dialog.handleJavaScriptDialog": Dialog.handleJavaScriptDialogReturnValue;
|
||||||
|
|
|
||||||
|
|
@ -116,7 +116,7 @@ const DOWNLOAD_PATHS = {
|
||||||
'mac10.13': undefined,
|
'mac10.13': undefined,
|
||||||
'mac10.14': 'builds/deprecated-webkit-mac-10.14/%s/deprecated-webkit-mac-10.14.zip',
|
'mac10.14': 'builds/deprecated-webkit-mac-10.14/%s/deprecated-webkit-mac-10.14.zip',
|
||||||
'mac10.15': 'builds/webkit/%s/webkit-mac-10.15.zip',
|
'mac10.15': 'builds/webkit/%s/webkit-mac-10.15.zip',
|
||||||
'mac11': 'builds/webkit/%s/webkit-mac-10.15.zip',
|
'mac11': 'builds/webkit/%s/webkit-mac-11.zip',
|
||||||
'mac11-arm64': 'builds/webkit/%s/webkit-mac-11-arm64.zip',
|
'mac11-arm64': 'builds/webkit/%s/webkit-mac-11-arm64.zip',
|
||||||
'mac12': 'builds/webkit/%s/webkit-mac-12.zip',
|
'mac12': 'builds/webkit/%s/webkit-mac-12.zip',
|
||||||
'mac12-arm64': 'builds/webkit/%s/webkit-mac-12-arm64.zip',
|
'mac12-arm64': 'builds/webkit/%s/webkit-mac-12-arm64.zip',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue