feat(firefox): roll to r1352 (#17494)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2022-09-21 11:12:45 -07:00 committed by GitHub
parent da7feb9cc6
commit 292b3e998e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -21,7 +21,7 @@
}, },
{ {
"name": "firefox", "name": "firefox",
"revision": "1351", "revision": "1352",
"installByDefault": true, "installByDefault": true,
"browserVersion": "104.0" "browserVersion": "104.0"
}, },

View file

@ -754,6 +754,8 @@ export module Protocol {
export type executionContextDestroyedPayload = { export type executionContextDestroyedPayload = {
executionContextId: string; executionContextId: string;
} }
export type executionContextsClearedPayload = {
}
export type consolePayload = { export type consolePayload = {
executionContextId: string; executionContextId: string;
args: { args: {
@ -1067,6 +1069,7 @@ export module Protocol {
"Page.screencastFrame": Page.screencastFramePayload; "Page.screencastFrame": Page.screencastFramePayload;
"Runtime.executionContextCreated": Runtime.executionContextCreatedPayload; "Runtime.executionContextCreated": Runtime.executionContextCreatedPayload;
"Runtime.executionContextDestroyed": Runtime.executionContextDestroyedPayload; "Runtime.executionContextDestroyed": Runtime.executionContextDestroyedPayload;
"Runtime.executionContextsCleared": Runtime.executionContextsClearedPayload;
"Runtime.console": Runtime.consolePayload; "Runtime.console": Runtime.consolePayload;
"Network.requestWillBeSent": Network.requestWillBeSentPayload; "Network.requestWillBeSent": Network.requestWillBeSentPayload;
"Network.responseReceived": Network.responseReceivedPayload; "Network.responseReceived": Network.responseReceivedPayload;