feat(webkit): roll to r2060 (#32082)

Reference: https://github.com/microsoft/playwright/pull/32108
This commit is contained in:
Playwright Service 2024-08-09 15:31:35 -07:00 committed by GitHub
parent d73c0ba689
commit 4d26036b7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 4 deletions

View File

@ -27,7 +27,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "2056", "revision": "2060",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"mac10.14": "1446", "mac10.14": "1446",

View File

@ -4452,19 +4452,23 @@ might return multiple quads for inline nodes.
savedResultIndex?: number; savedResultIndex?: number;
} }
/** /**
* Sets whether the given URL should be in the list of blackboxed scripts, which are ignored when pausing/stepping/debugging. * Sets whether the given URL should be in the list of blackboxed scripts, which are ignored when pausing.
*/ */
export type setShouldBlackboxURLParameters = { export type setShouldBlackboxURLParameters = {
url: string; url: string;
shouldBlackbox: boolean; shouldBlackbox: boolean;
/** /**
* If true, <code>url</code> is case sensitive. * If <code>true</code>, <code>url</code> is case sensitive.
*/ */
caseSensitive?: boolean; caseSensitive?: boolean;
/** /**
* If true, treat <code>url</code> as regular expression. * If <code>true</code>, treat <code>url</code> as regular expression.
*/ */
isRegex?: boolean; isRegex?: boolean;
/**
* If provided, limits where in the script the debugger will skip pauses. Expected structure is a repeated <code>[startLine, startColumn, endLine, endColumn]</code>. Ignored if <code>shouldBlackbox</code> is <code>false</code>.
*/
sourceRanges?: number[];
} }
export type setShouldBlackboxURLReturnValue = { export type setShouldBlackboxURLReturnValue = {
} }