feat(webkit): roll to r1811 (#21637)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2023-03-13 14:34:34 -07:00 committed by GitHub
parent 9c8d0822d6
commit e6d13f1f2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 2 deletions

View File

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

View File

@ -714,6 +714,10 @@ export module Protocol {
* Grouping list array (for rules involving @media/@supports). The array enumerates CSS groupings starting with the innermost one, going outwards. * Grouping list array (for rules involving @media/@supports). The array enumerates CSS groupings starting with the innermost one, going outwards.
*/ */
groupings?: Grouping[]; groupings?: Grouping[];
/**
* <code>true</code> if this style is for a rule implicitly wrapping properties declared inside of CSSGrouping.
*/
isImplicitlyNested?: boolean;
} }
/** /**
* Text range within a resource. * Text range within a resource.
@ -1540,6 +1544,10 @@ export module Protocol {
* Level of logging. * Level of logging.
*/ */
export type ChannelLevel = "off"|"basic"|"verbose"; export type ChannelLevel = "off"|"basic"|"verbose";
/**
* The reason the console is being cleared.
*/
export type ClearReason = "console-api"|"main-frame-navigation";
/** /**
* Logging channel. * Logging channel.
*/ */
@ -1666,7 +1674,12 @@ export module Protocol {
/** /**
* Issued when console is cleared. This happens either upon <code>clearMessages</code> command or after page navigation. * Issued when console is cleared. This happens either upon <code>clearMessages</code> command or after page navigation.
*/ */
export type messagesClearedPayload = void; export type messagesClearedPayload = {
/**
* The reason the console is being cleared.
*/
reason: ClearReason;
}
/** /**
* Issued from console.takeHeapSnapshot. * Issued from console.takeHeapSnapshot.
*/ */