feat(webkit): roll to r1727 (#18138)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2022-10-17 23:23:26 -07:00 committed by GitHub
parent 6d363888f2
commit 8ff2eda16a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

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

View File

@ -3222,6 +3222,14 @@ might return multiple quads for inline nodes.
* The name of the specific event to stop on.
*/
eventName?: string;
/**
* If true, eventName is case sensitive. Defaults to true.
*/
caseSensitive?: boolean;
/**
* If true, treats eventName as a regex. Defaults to false.
*/
isRegex?: boolean;
/**
* Options to apply to this breakpoint to modify its behavior.
*/
@ -3238,6 +3246,14 @@ might return multiple quads for inline nodes.
* The name of the specific event to stop on.
*/
eventName?: string;
/**
* If true, eventName is case sensitive. Defaults to true.
*/
caseSensitive?: boolean;
/**
* If true, treats eventName as a regex. Defaults to false.
*/
isRegex?: boolean;
}
export type removeEventBreakpointReturnValue = {
}