mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1811 (#21637)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
9c8d0822d6
commit
e6d13f1f2c
@ -33,7 +33,7 @@
|
||||
},
|
||||
{
|
||||
"name": "webkit",
|
||||
"revision": "1808",
|
||||
"revision": "1811",
|
||||
"installByDefault": true,
|
||||
"revisionOverrides": {
|
||||
"mac10.14": "1446",
|
||||
|
||||
@ -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.
|
||||
*/
|
||||
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.
|
||||
@ -1540,6 +1544,10 @@ export module Protocol {
|
||||
* Level of logging.
|
||||
*/
|
||||
export type ChannelLevel = "off"|"basic"|"verbose";
|
||||
/**
|
||||
* The reason the console is being cleared.
|
||||
*/
|
||||
export type ClearReason = "console-api"|"main-frame-navigation";
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
export type messagesClearedPayload = void;
|
||||
export type messagesClearedPayload = {
|
||||
/**
|
||||
* The reason the console is being cleared.
|
||||
*/
|
||||
reason: ClearReason;
|
||||
}
|
||||
/**
|
||||
* Issued from console.takeHeapSnapshot.
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user