mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r2060 (#32082)
Reference: https://github.com/microsoft/playwright/pull/32108
This commit is contained in:
parent
d73c0ba689
commit
4d26036b7b
@ -27,7 +27,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "2056",
|
"revision": "2060",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
|||||||
@ -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 = {
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user