feat(webkit): roll to r1715 (#17192)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2022-09-08 09:00:55 -07:00 committed by GitHub
parent aad745acab
commit cf8f662f13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 2 deletions

View file

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

View file

@ -910,7 +910,7 @@ export module Protocol {
/** /**
* Relevant layout information about the node. Things not in this list are not important to Web Inspector. * Relevant layout information about the node. Things not in this list are not important to Web Inspector.
*/ */
export type LayoutFlag = "rendered"|"flex"|"grid"|"event"; export type LayoutFlag = "rendered"|"scrollable"|"flex"|"grid"|"event";
/** /**
* The mode for how layout context type changes are handled (default: <code>Observed</code>). <code>Observed</code> limits handling to those nodes already known to the frontend by other means (generally, this means the node is a visible item in the Elements tab). <code>All</code> informs the frontend of all layout context type changes and all nodes with a known layout context are sent to the frontend. * The mode for how layout context type changes are handled (default: <code>Observed</code>). <code>Observed</code> limits handling to those nodes already known to the frontend by other means (generally, this means the node is a visible item in the Elements tab). <code>All</code> informs the frontend of all layout context type changes and all nodes with a known layout context are sent to the frontend.
*/ */
@ -4024,6 +4024,25 @@ might return multiple quads for inline nodes.
*/ */
details: FunctionDetails; details: FunctionDetails;
} }
/**
* Returns a list of valid breakpoint locations within the given location range.
*/
export type getBreakpointLocationsParameters = {
/**
* Starting location to look for breakpoint locations after (inclusive). Must have same scriptId as end.
*/
start: Location;
/**
* Ending location to look for breakpoint locations before (exclusive). Must have same scriptId as start.
*/
end: Location;
}
export type getBreakpointLocationsReturnValue = {
/**
* List of resolved breakpoint locations.
*/
locations: Location[];
}
/** /**
* Control whether the debugger pauses execution before `debugger` statements. * Control whether the debugger pauses execution before `debugger` statements.
*/ */
@ -9130,6 +9149,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Debugger.searchInContent": Debugger.searchInContentParameters; "Debugger.searchInContent": Debugger.searchInContentParameters;
"Debugger.getScriptSource": Debugger.getScriptSourceParameters; "Debugger.getScriptSource": Debugger.getScriptSourceParameters;
"Debugger.getFunctionDetails": Debugger.getFunctionDetailsParameters; "Debugger.getFunctionDetails": Debugger.getFunctionDetailsParameters;
"Debugger.getBreakpointLocations": Debugger.getBreakpointLocationsParameters;
"Debugger.setPauseOnDebuggerStatements": Debugger.setPauseOnDebuggerStatementsParameters; "Debugger.setPauseOnDebuggerStatements": Debugger.setPauseOnDebuggerStatementsParameters;
"Debugger.setPauseOnExceptions": Debugger.setPauseOnExceptionsParameters; "Debugger.setPauseOnExceptions": Debugger.setPauseOnExceptionsParameters;
"Debugger.setPauseOnAssertions": Debugger.setPauseOnAssertionsParameters; "Debugger.setPauseOnAssertions": Debugger.setPauseOnAssertionsParameters;
@ -9437,6 +9457,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Debugger.searchInContent": Debugger.searchInContentReturnValue; "Debugger.searchInContent": Debugger.searchInContentReturnValue;
"Debugger.getScriptSource": Debugger.getScriptSourceReturnValue; "Debugger.getScriptSource": Debugger.getScriptSourceReturnValue;
"Debugger.getFunctionDetails": Debugger.getFunctionDetailsReturnValue; "Debugger.getFunctionDetails": Debugger.getFunctionDetailsReturnValue;
"Debugger.getBreakpointLocations": Debugger.getBreakpointLocationsReturnValue;
"Debugger.setPauseOnDebuggerStatements": Debugger.setPauseOnDebuggerStatementsReturnValue; "Debugger.setPauseOnDebuggerStatements": Debugger.setPauseOnDebuggerStatementsReturnValue;
"Debugger.setPauseOnExceptions": Debugger.setPauseOnExceptionsReturnValue; "Debugger.setPauseOnExceptions": Debugger.setPauseOnExceptionsReturnValue;
"Debugger.setPauseOnAssertions": Debugger.setPauseOnAssertionsReturnValue; "Debugger.setPauseOnAssertions": Debugger.setPauseOnAssertionsReturnValue;