feat(webkit): roll to r1991 (#30049)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2024-03-22 05:00:15 -07:00 committed by GitHub
parent 63cc132daa
commit b834c0b9ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

View file

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

View file

@ -1569,7 +1569,7 @@ export module Protocol {
/**
* The reason the console is being cleared.
*/
export type ClearReason = "console-api"|"main-frame-navigation";
export type ClearReason = "console-api"|"frontend"|"main-frame-navigation";
/**
* Logging channel.
*/
@ -1738,6 +1738,14 @@ export module Protocol {
}
export type clearMessagesReturnValue = {
}
/**
* Control whether calling <code>console.clear()</code> has an effect in Web Inspector. Defaults to true.
*/
export type setConsoleClearAPIEnabledParameters = {
enable: boolean;
}
export type setConsoleClearAPIEnabledReturnValue = {
}
/**
* List of the different message sources that are non-default logging channels.
*/
@ -9388,6 +9396,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Console.enable": Console.enableParameters;
"Console.disable": Console.disableParameters;
"Console.clearMessages": Console.clearMessagesParameters;
"Console.setConsoleClearAPIEnabled": Console.setConsoleClearAPIEnabledParameters;
"Console.getLoggingChannels": Console.getLoggingChannelsParameters;
"Console.setLoggingChannelLevel": Console.setLoggingChannelLevelParameters;
"DOM.getDocument": DOM.getDocumentParameters;
@ -9698,6 +9707,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
"Console.enable": Console.enableReturnValue;
"Console.disable": Console.disableReturnValue;
"Console.clearMessages": Console.clearMessagesReturnValue;
"Console.setConsoleClearAPIEnabled": Console.setConsoleClearAPIEnabledReturnValue;
"Console.getLoggingChannels": Console.getLoggingChannelsReturnValue;
"Console.setLoggingChannelLevel": Console.setLoggingChannelLevelReturnValue;
"DOM.getDocument": DOM.getDocumentReturnValue;