chrome-devtools-frontend 1.0.1020516 → 1.0.1021582
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/gni/devtools_grd_files.gni +15 -10
 - package/docs/triage_guidelines.md +9 -7
 - package/front_end/.eslintrc.js +1 -0
 - package/front_end/core/i18n/locales/en-US.json +123 -9
 - package/front_end/core/i18n/locales/en-XL.json +123 -9
 - package/front_end/core/sdk/CSSModel.ts +5 -2
 - package/front_end/models/bindings/BreakpointManager.ts +14 -3
 - package/front_end/models/bindings/DebuggerLanguagePlugins.ts +8 -0
 - package/front_end/models/bindings/ResourceScriptMapping.ts +76 -53
 - package/front_end/panels/application/components/FrameDetailsView.ts +3 -2
 - package/front_end/panels/application/components/Prerender2.ts +188 -0
 - package/front_end/panels/application/components/protocolHandlersView.css +4 -0
 - package/front_end/panels/elements/CSSRuleValidator.ts +103 -13
 - package/front_end/panels/elements/ElementsPanel.ts +3 -0
 - package/front_end/panels/elements/ElementsTreeElement.ts +3 -1
 - package/front_end/panels/elements/LayoutSidebarPane.ts +1 -2
 - package/front_end/panels/elements/StylePropertyTreeElement.ts +10 -8
 - package/front_end/panels/elements/components/CSSHintDetailsView.ts +71 -0
 - package/front_end/panels/elements/components/components.ts +2 -0
 - package/front_end/panels/elements/components/cssHintDetailsView.css +36 -0
 - package/front_end/panels/elements/stylesSectionTree.css +1 -1
 - package/front_end/panels/network/components/RequestHeadersView.ts +2 -1
 - package/front_end/services/puppeteer/PuppeteerConnection.ts +3 -5
 - package/front_end/third_party/lit-html/directives.ts +1 -0
 - package/front_end/third_party/lit-html/lit-html-tsconfig.json +1 -0
 - package/front_end/third_party/puppeteer/package/README.md +136 -214
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Accessibility.d.ts +6 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Accessibility.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Accessibility.js +149 -85
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Accessibility.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js +34 -10
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.d.ts +17 -36
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.js +217 -160
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Browser.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.d.ts +5 -4
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js +18 -13
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserConnector.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserWebSocketTransport.d.ts +4 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserWebSocketTransport.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserWebSocketTransport.js +30 -11
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/BrowserWebSocketTransport.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.d.ts +21 -20
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.js +125 -82
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Connection.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.d.ts +1 -4
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.js +27 -9
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ConsoleMessage.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.d.ts +6 -30
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.js +167 -131
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Coverage.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts +36 -67
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js +359 -215
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DOMWorld.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts +8 -4
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js +9 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Debug.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DeviceDescriptors.d.ts +21 -2
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DeviceDescriptors.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DeviceDescriptors.js +26 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/DeviceDescriptors.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.d.ts +2 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.js +32 -15
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Dialog.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ElementHandle.d.ts +355 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ElementHandle.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ElementHandle.js +847 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ElementHandle.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EmulationManager.d.ts +4 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EmulationManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EmulationManager.js +25 -8
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EmulationManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.d.ts +28 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.js +27 -7
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Errors.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EventEmitter.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EventEmitter.js +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EventEmitter.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.d.ts +20 -19
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.js +146 -126
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/ExecutionContext.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.d.ts +4 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.js +25 -10
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts +53 -92
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js +337 -320
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FrameManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts +16 -28
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js +200 -147
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPRequest.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts +1 -18
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js +86 -60
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/HTTPResponse.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.d.ts +18 -22
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.js +166 -117
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Input.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts +46 -395
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js +80 -842
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/JSHandle.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.d.ts +4 -32
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js +136 -108
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/LifecycleWatcher.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkConditions.d.ts +25 -7
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkConditions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkConditions.js +23 -2
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkConditions.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.d.ts +16 -11
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.js +39 -32
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkEventManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts +2 -42
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js +315 -316
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/NetworkManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts +5 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js +2 -2
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/PDFOptions.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.d.ts +246 -287
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.js +841 -700
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Page.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.d.ts +37 -74
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.js +37 -89
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Puppeteer.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts +38 -13
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js +79 -29
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/SecurityDetails.d.ts +1 -6
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/SecurityDetails.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/SecurityDetails.js +31 -12
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/SecurityDetails.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.d.ts +6 -9
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.js +80 -40
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Target.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.d.ts +4 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.js +24 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TaskQueue.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TimeoutSettings.d.ts +1 -2
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TimeoutSettings.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TimeoutSettings.js +28 -10
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/TimeoutSettings.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Tracing.d.ts +4 -5
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Tracing.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Tracing.js +50 -23
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Tracing.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/USKeyboardLayout.d.ts +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/USKeyboardLayout.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/USKeyboardLayout.js +2 -2
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/USKeyboardLayout.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WebWorker.d.ts +9 -11
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WebWorker.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WebWorker.js +41 -31
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/WebWorker.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/assert.d.ts +4 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/assert.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/assert.js +6 -8
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/assert.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/fetch.d.ts +5 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/fetch.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/fetch.js +6 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/fetch.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/types.d.ts +48 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/types.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/{EvalTypes.js → types.js} +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/types.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts +129 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/{helper.js → util.js} +168 -87
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.d.ts +3 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.js +3 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/compat.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.d.ts +3 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.js +3 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/constants.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts +3 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.js +3 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/environment.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +4 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +4 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/{esm/puppeteer/initialize-node.d.ts → cjs/puppeteer/initializePuppeteer.d.ts} +5 -2
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initializePuppeteer.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{initialize-node.js → initializePuppeteer.js} +18 -14
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initializePuppeteer.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.d.ts +4 -11
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js +226 -158
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserFetcher.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts +9 -11
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js +116 -72
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserRunner.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts +27 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js +176 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ChromeLauncher.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts +49 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js +361 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts +6 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.js +44 -12
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/NodeWebSocketTransport.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts +4 -20
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.js +60 -35
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PipeTransport.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ProductLauncher.d.ts +31 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ProductLauncher.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ProductLauncher.js +166 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/ProductLauncher.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.d.ts +42 -41
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.js +69 -47
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Puppeteer.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.d.ts +6 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js +55 -32
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/install.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util.d.ts +10 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util.js +40 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/util.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts +23 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js +41 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer-core.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer.d.ts +26 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer.js +44 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/puppeteer.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +6 -5
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +6 -3
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/tsconfig.cjs.tsbuildinfo +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/tsconfig.tsbuildinfo +1 -0
 - package/front_end/third_party/puppeteer/package/lib/{esm/puppeteer/api-docs-entry.js → cjs/puppeteer/types.d.ts} +46 -63
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/types.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/{api-docs-entry.js → types.js} +50 -51
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/types.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/cjs/vendor/mitt/src/index.d.ts +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/vendor/mitt/src/index.js +11 -12
 - package/front_end/third_party/puppeteer/package/lib/cjs/vendor/tsconfig.cjs.tsbuildinfo +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts +6 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.js +149 -85
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Accessibility.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js +34 -10
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/AriaQueryHandler.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts +17 -36
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js +217 -160
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Browser.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts +5 -4
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js +16 -11
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserConnector.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts +4 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.js +30 -11
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/BrowserWebSocketTransport.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts +21 -20
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js +125 -82
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Connection.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts +1 -4
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js +27 -9
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ConsoleMessage.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts +6 -30
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js +167 -131
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Coverage.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts +36 -67
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js +335 -214
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DOMWorld.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts +8 -4
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js +9 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Debug.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts +21 -2
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.js +25 -5
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/DeviceDescriptors.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts +2 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.js +32 -15
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Dialog.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ElementHandle.d.ts +355 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ElementHandle.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ElementHandle.js +820 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ElementHandle.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts +4 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.js +25 -8
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EmulationManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts +28 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js +26 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Errors.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.js +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EventEmitter.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts +20 -19
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.js +145 -125
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/ExecutionContext.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts +4 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js +25 -10
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts +53 -92
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js +337 -320
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FrameManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts +16 -28
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js +199 -146
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPRequest.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts +1 -18
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js +86 -60
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/HTTPResponse.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts +18 -22
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js +167 -118
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Input.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts +46 -395
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js +80 -817
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/JSHandle.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts +4 -32
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js +135 -107
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/LifecycleWatcher.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkConditions.d.ts +25 -7
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkConditions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkConditions.js +23 -2
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkConditions.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.d.ts +16 -11
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.js +39 -32
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkEventManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts +2 -42
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js +312 -313
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/NetworkManager.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts +5 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/PDFOptions.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts +246 -287
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js +819 -701
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Page.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts +37 -74
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js +39 -91
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Puppeteer.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts +38 -13
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js +79 -29
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts +1 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.js +31 -12
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/SecurityDetails.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts +6 -9
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js +80 -40
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Target.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.d.ts +4 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.js +24 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TaskQueue.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts +1 -2
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.js +28 -10
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/TimeoutSettings.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts +4 -5
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.js +50 -23
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Tracing.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.js +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/USKeyboardLayout.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts +9 -11
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js +41 -31
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/WebWorker.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts +4 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js +5 -6
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/assert.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts +5 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js +6 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/fetch.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/types.d.ts +48 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/types.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/{EvalTypes.js → types.js} +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/types.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts +129 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/{helper.js → util.js} +161 -100
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.d.ts +3 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js +3 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/compat.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.d.ts +3 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js +3 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/constants.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts +3 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.js +3 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/environment.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +4 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +4 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/{cjs/puppeteer/initialize-node.d.ts → esm/puppeteer/initializePuppeteer.d.ts} +5 -2
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initializePuppeteer.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{initialize-node.js → initializePuppeteer.js} +16 -12
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initializePuppeteer.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts +4 -11
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js +226 -158
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserFetcher.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts +9 -11
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js +113 -69
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserRunner.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts +27 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js +169 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ChromeLauncher.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts +49 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/{Launcher.js → FirefoxLauncher.js} +51 -345
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts +6 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js +44 -12
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/NodeWebSocketTransport.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts +4 -20
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js +60 -35
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PipeTransport.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ProductLauncher.d.ts +31 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ProductLauncher.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ProductLauncher.js +157 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/ProductLauncher.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts +42 -41
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js +70 -45
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Puppeteer.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts +6 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js +53 -30
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/install.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/util.d.ts +10 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/util.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/util.js +13 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/util.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts +23 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/{node-puppeteer-core.d.ts → puppeteer-core.js} +8 -2
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer-core.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer.d.ts +26 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/{cjs/puppeteer/node-puppeteer-core.d.ts → esm/puppeteer/puppeteer.js} +11 -2
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/puppeteer.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +6 -5
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +6 -3
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/tsconfig.esm.tsbuildinfo +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/tsconfig.tsbuildinfo +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/types.d.ts +64 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/types.d.ts.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/types.js +68 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/types.js.map +1 -0
 - package/front_end/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js +9 -10
 - package/front_end/third_party/puppeteer/package/lib/esm/vendor/tsconfig.esm.tsbuildinfo +1 -0
 - package/front_end/third_party/puppeteer/package/lib/types.d.ts +846 -1670
 - package/front_end/third_party/puppeteer/package/package.json +65 -68
 - package/front_end/third_party/puppeteer/package/typescript-if-required.js +17 -8
 - package/front_end/third_party/puppeteer/puppeteer.ts +7 -14
 - package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspector.ts +2 -5
 - package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorController.ts +22 -2
 - package/front_end/ui/components/linear_memory_inspector/LinearMemoryInspectorPane.ts +40 -12
 - package/front_end/ui/components/linear_memory_inspector/LinearMemoryViewer.ts +5 -5
 - package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +13 -10
 - package/front_end/ui/legacy/components/object_ui/objectValue.css +4 -0
 - package/front_end/ui/legacy/components/utils/Linkifier.ts +3 -1
 - package/package.json +1 -1
 - package/scripts/eslint_rules/lib/inject_checkbox_styles.js +4 -2
 - package/scripts/eslint_rules/tests/inject_checkbox_styles_test.js +45 -5
 - package/front_end/third_party/puppeteer/package/cjs-entry-core.js +0 -29
 - package/front_end/third_party/puppeteer/package/cjs-entry.js +0 -29
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api-docs-entry.d.ts +0 -111
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api-docs-entry.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api-docs-entry.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EvalTypes.d.ts +0 -61
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EvalTypes.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/EvalTypes.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Events.d.ts +0 -82
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Events.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Events.js +0 -87
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Events.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/helper.d.ts +0 -85
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/helper.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/helper.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-node.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-web.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-web.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-web.js +0 -27
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/initialize-web.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js +0 -674
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/Launcher.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node-puppeteer-core.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node-puppeteer-core.js +0 -25
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node-puppeteer-core.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node.js +0 -24
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/web.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/web.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/web.js +0 -24
 - package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/web.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/vendor/mitt/src/index.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/cjs/vendor/mitt/src/index.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts +0 -111
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api-docs-entry.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts +0 -61
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/EvalTypes.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts +0 -82
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.js +0 -84
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Events.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts +0 -85
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/helper.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-node.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js +0 -23
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/initialize-web.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/Launcher.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js +0 -23
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node-puppeteer-core.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node.js +0 -22
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts +0 -18
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.js +0 -22
 - package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/web.js.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.d.ts.map +0 -1
 - package/front_end/third_party/puppeteer/package/lib/esm/vendor/mitt/src/index.js.map +0 -1
 
| 
         @@ -14,6 +14,18 @@ 
     | 
|
| 
       14 
14 
     | 
    
         
             
             * See the License for the specific language governing permissions and
         
     | 
| 
       15 
15 
     | 
    
         
             
             * limitations under the License.
         
     | 
| 
       16 
16 
     | 
    
         
             
             */
         
     | 
| 
      
 17 
     | 
    
         
            +
            var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
         
     | 
| 
      
 18 
     | 
    
         
            +
                if (kind === "m") throw new TypeError("Private method is not writable");
         
     | 
| 
      
 19 
     | 
    
         
            +
                if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
         
     | 
| 
      
 20 
     | 
    
         
            +
                if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
         
     | 
| 
      
 21 
     | 
    
         
            +
                return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
         
     | 
| 
      
 22 
     | 
    
         
            +
            };
         
     | 
| 
      
 23 
     | 
    
         
            +
            var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
         
     | 
| 
      
 24 
     | 
    
         
            +
                if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
         
     | 
| 
      
 25 
     | 
    
         
            +
                if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
         
     | 
| 
      
 26 
     | 
    
         
            +
                return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
         
     | 
| 
      
 27 
     | 
    
         
            +
            };
         
     | 
| 
      
 28 
     | 
    
         
            +
            var _Accessibility_client, _AXNode_instances, _AXNode_richlyEditable, _AXNode_editable, _AXNode_focusable, _AXNode_hidden, _AXNode_name, _AXNode_role, _AXNode_ignored, _AXNode_cachedHasFocusableChild, _AXNode_isPlainTextField, _AXNode_isTextOnlyObject, _AXNode_hasFocusableChild;
         
     | 
| 
       17 
29 
     | 
    
         
             
            Object.defineProperty(exports, "__esModule", { value: true });
         
     | 
| 
       18 
30 
     | 
    
         
             
            exports.Accessibility = void 0;
         
     | 
| 
       19 
31 
     | 
    
         
             
            /**
         
     | 
| 
         @@ -43,7 +55,8 @@ class Accessibility { 
     | 
|
| 
       43 
55 
     | 
    
         
             
                 * @internal
         
     | 
| 
       44 
56 
     | 
    
         
             
                 */
         
     | 
| 
       45 
57 
     | 
    
         
             
                constructor(client) {
         
     | 
| 
       46 
     | 
    
         
            -
                    this 
     | 
| 
      
 58 
     | 
    
         
            +
                    _Accessibility_client.set(this, void 0);
         
     | 
| 
      
 59 
     | 
    
         
            +
                    __classPrivateFieldSet(this, _Accessibility_client, client, "f");
         
     | 
| 
       47 
60 
     | 
    
         
             
                }
         
     | 
| 
       48 
61 
     | 
    
         
             
                /**
         
     | 
| 
       49 
62 
     | 
    
         
             
                 * Captures the current state of the accessibility tree.
         
     | 
| 
         @@ -58,14 +71,14 @@ class Accessibility { 
     | 
|
| 
       58 
71 
     | 
    
         
             
                 *
         
     | 
| 
       59 
72 
     | 
    
         
             
                 * @example
         
     | 
| 
       60 
73 
     | 
    
         
             
                 * An example of dumping the entire accessibility tree:
         
     | 
| 
       61 
     | 
    
         
            -
                 * ``` 
     | 
| 
      
 74 
     | 
    
         
            +
                 * ```ts
         
     | 
| 
       62 
75 
     | 
    
         
             
                 * const snapshot = await page.accessibility.snapshot();
         
     | 
| 
       63 
76 
     | 
    
         
             
                 * console.log(snapshot);
         
     | 
| 
       64 
77 
     | 
    
         
             
                 * ```
         
     | 
| 
       65 
78 
     | 
    
         
             
                 *
         
     | 
| 
       66 
79 
     | 
    
         
             
                 * @example
         
     | 
| 
       67 
80 
     | 
    
         
             
                 * An example of logging the focused node's name:
         
     | 
| 
       68 
     | 
    
         
            -
                 * ``` 
     | 
| 
      
 81 
     | 
    
         
            +
                 * ```ts
         
     | 
| 
       69 
82 
     | 
    
         
             
                 * const snapshot = await page.accessibility.snapshot();
         
     | 
| 
       70 
83 
     | 
    
         
             
                 * const node = findFocusedNode(snapshot);
         
     | 
| 
       71 
84 
     | 
    
         
             
                 * console.log(node && node.name);
         
     | 
| 
         @@ -85,11 +98,12 @@ class Accessibility { 
     | 
|
| 
       85 
98 
     | 
    
         
             
                 *
         
     | 
| 
       86 
99 
     | 
    
         
             
                 */
         
     | 
| 
       87 
100 
     | 
    
         
             
                async snapshot(options = {}) {
         
     | 
| 
      
 101 
     | 
    
         
            +
                    var _a, _b;
         
     | 
| 
       88 
102 
     | 
    
         
             
                    const { interestingOnly = true, root = null } = options;
         
     | 
| 
       89 
     | 
    
         
            -
                    const { nodes } = await this. 
     | 
| 
       90 
     | 
    
         
            -
                    let backendNodeId 
     | 
| 
      
 103 
     | 
    
         
            +
                    const { nodes } = await __classPrivateFieldGet(this, _Accessibility_client, "f").send('Accessibility.getFullAXTree');
         
     | 
| 
      
 104 
     | 
    
         
            +
                    let backendNodeId;
         
     | 
| 
       91 
105 
     | 
    
         
             
                    if (root) {
         
     | 
| 
       92 
     | 
    
         
            -
                        const { node } = await this. 
     | 
| 
      
 106 
     | 
    
         
            +
                        const { node } = await __classPrivateFieldGet(this, _Accessibility_client, "f").send('DOM.describeNode', {
         
     | 
| 
       93 
107 
     | 
    
         
             
                            objectId: root._remoteObject.objectId,
         
     | 
| 
       94 
108 
     | 
    
         
             
                        });
         
     | 
| 
       95 
109 
     | 
    
         
             
                        backendNodeId = node.backendNodeId;
         
     | 
| 
         @@ -97,109 +111,109 @@ class Accessibility { 
     | 
|
| 
       97 
111 
     | 
    
         
             
                    const defaultRoot = AXNode.createTree(nodes);
         
     | 
| 
       98 
112 
     | 
    
         
             
                    let needle = defaultRoot;
         
     | 
| 
       99 
113 
     | 
    
         
             
                    if (backendNodeId) {
         
     | 
| 
       100 
     | 
    
         
            -
                        needle = defaultRoot.find( 
     | 
| 
       101 
     | 
    
         
            -
             
     | 
| 
      
 114 
     | 
    
         
            +
                        needle = defaultRoot.find(node => {
         
     | 
| 
      
 115 
     | 
    
         
            +
                            return node.payload.backendDOMNodeId === backendNodeId;
         
     | 
| 
      
 116 
     | 
    
         
            +
                        });
         
     | 
| 
      
 117 
     | 
    
         
            +
                        if (!needle) {
         
     | 
| 
       102 
118 
     | 
    
         
             
                            return null;
         
     | 
| 
      
 119 
     | 
    
         
            +
                        }
         
     | 
| 
      
 120 
     | 
    
         
            +
                    }
         
     | 
| 
      
 121 
     | 
    
         
            +
                    if (!interestingOnly) {
         
     | 
| 
      
 122 
     | 
    
         
            +
                        return (_a = this.serializeTree(needle)[0]) !== null && _a !== void 0 ? _a : null;
         
     | 
| 
       103 
123 
     | 
    
         
             
                    }
         
     | 
| 
       104 
     | 
    
         
            -
                    if (!interestingOnly)
         
     | 
| 
       105 
     | 
    
         
            -
                        return this.serializeTree(needle)[0];
         
     | 
| 
       106 
124 
     | 
    
         
             
                    const interestingNodes = new Set();
         
     | 
| 
       107 
125 
     | 
    
         
             
                    this.collectInterestingNodes(interestingNodes, defaultRoot, false);
         
     | 
| 
       108 
     | 
    
         
            -
                    if (!interestingNodes.has(needle))
         
     | 
| 
      
 126 
     | 
    
         
            +
                    if (!interestingNodes.has(needle)) {
         
     | 
| 
       109 
127 
     | 
    
         
             
                        return null;
         
     | 
| 
       110 
     | 
    
         
            -
                     
     | 
| 
      
 128 
     | 
    
         
            +
                    }
         
     | 
| 
      
 129 
     | 
    
         
            +
                    return (_b = this.serializeTree(needle, interestingNodes)[0]) !== null && _b !== void 0 ? _b : null;
         
     | 
| 
       111 
130 
     | 
    
         
             
                }
         
     | 
| 
       112 
131 
     | 
    
         
             
                serializeTree(node, interestingNodes) {
         
     | 
| 
       113 
132 
     | 
    
         
             
                    const children = [];
         
     | 
| 
       114 
     | 
    
         
            -
                    for (const child of node.children)
         
     | 
| 
      
 133 
     | 
    
         
            +
                    for (const child of node.children) {
         
     | 
| 
       115 
134 
     | 
    
         
             
                        children.push(...this.serializeTree(child, interestingNodes));
         
     | 
| 
       116 
     | 
    
         
            -
                     
     | 
| 
      
 135 
     | 
    
         
            +
                    }
         
     | 
| 
      
 136 
     | 
    
         
            +
                    if (interestingNodes && !interestingNodes.has(node)) {
         
     | 
| 
       117 
137 
     | 
    
         
             
                        return children;
         
     | 
| 
      
 138 
     | 
    
         
            +
                    }
         
     | 
| 
       118 
139 
     | 
    
         
             
                    const serializedNode = node.serialize();
         
     | 
| 
       119 
     | 
    
         
            -
                    if (children.length)
         
     | 
| 
      
 140 
     | 
    
         
            +
                    if (children.length) {
         
     | 
| 
       120 
141 
     | 
    
         
             
                        serializedNode.children = children;
         
     | 
| 
      
 142 
     | 
    
         
            +
                    }
         
     | 
| 
       121 
143 
     | 
    
         
             
                    return [serializedNode];
         
     | 
| 
       122 
144 
     | 
    
         
             
                }
         
     | 
| 
       123 
145 
     | 
    
         
             
                collectInterestingNodes(collection, node, insideControl) {
         
     | 
| 
       124 
     | 
    
         
            -
                    if (node.isInteresting(insideControl))
         
     | 
| 
      
 146 
     | 
    
         
            +
                    if (node.isInteresting(insideControl)) {
         
     | 
| 
       125 
147 
     | 
    
         
             
                        collection.add(node);
         
     | 
| 
       126 
     | 
    
         
            -
                     
     | 
| 
      
 148 
     | 
    
         
            +
                    }
         
     | 
| 
      
 149 
     | 
    
         
            +
                    if (node.isLeafNode()) {
         
     | 
| 
       127 
150 
     | 
    
         
             
                        return;
         
     | 
| 
      
 151 
     | 
    
         
            +
                    }
         
     | 
| 
       128 
152 
     | 
    
         
             
                    insideControl = insideControl || node.isControl();
         
     | 
| 
       129 
     | 
    
         
            -
                    for (const child of node.children)
         
     | 
| 
      
 153 
     | 
    
         
            +
                    for (const child of node.children) {
         
     | 
| 
       130 
154 
     | 
    
         
             
                        this.collectInterestingNodes(collection, child, insideControl);
         
     | 
| 
      
 155 
     | 
    
         
            +
                    }
         
     | 
| 
       131 
156 
     | 
    
         
             
                }
         
     | 
| 
       132 
157 
     | 
    
         
             
            }
         
     | 
| 
       133 
158 
     | 
    
         
             
            exports.Accessibility = Accessibility;
         
     | 
| 
      
 159 
     | 
    
         
            +
            _Accessibility_client = new WeakMap();
         
     | 
| 
       134 
160 
     | 
    
         
             
            class AXNode {
         
     | 
| 
       135 
161 
     | 
    
         
             
                constructor(payload) {
         
     | 
| 
      
 162 
     | 
    
         
            +
                    _AXNode_instances.add(this);
         
     | 
| 
       136 
163 
     | 
    
         
             
                    this.children = [];
         
     | 
| 
       137 
     | 
    
         
            -
                    this 
     | 
| 
       138 
     | 
    
         
            -
                    this 
     | 
| 
       139 
     | 
    
         
            -
                    this 
     | 
| 
       140 
     | 
    
         
            -
                    this 
     | 
| 
      
 164 
     | 
    
         
            +
                    _AXNode_richlyEditable.set(this, false);
         
     | 
| 
      
 165 
     | 
    
         
            +
                    _AXNode_editable.set(this, false);
         
     | 
| 
      
 166 
     | 
    
         
            +
                    _AXNode_focusable.set(this, false);
         
     | 
| 
      
 167 
     | 
    
         
            +
                    _AXNode_hidden.set(this, false);
         
     | 
| 
      
 168 
     | 
    
         
            +
                    _AXNode_name.set(this, void 0);
         
     | 
| 
      
 169 
     | 
    
         
            +
                    _AXNode_role.set(this, void 0);
         
     | 
| 
      
 170 
     | 
    
         
            +
                    _AXNode_ignored.set(this, void 0);
         
     | 
| 
      
 171 
     | 
    
         
            +
                    _AXNode_cachedHasFocusableChild.set(this, void 0);
         
     | 
| 
       141 
172 
     | 
    
         
             
                    this.payload = payload;
         
     | 
| 
       142 
     | 
    
         
            -
                    this 
     | 
| 
       143 
     | 
    
         
            -
                    this 
     | 
| 
       144 
     | 
    
         
            -
                    this 
     | 
| 
      
 173 
     | 
    
         
            +
                    __classPrivateFieldSet(this, _AXNode_name, this.payload.name ? this.payload.name.value : '', "f");
         
     | 
| 
      
 174 
     | 
    
         
            +
                    __classPrivateFieldSet(this, _AXNode_role, this.payload.role ? this.payload.role.value : 'Unknown', "f");
         
     | 
| 
      
 175 
     | 
    
         
            +
                    __classPrivateFieldSet(this, _AXNode_ignored, this.payload.ignored, "f");
         
     | 
| 
       145 
176 
     | 
    
         
             
                    for (const property of this.payload.properties || []) {
         
     | 
| 
       146 
177 
     | 
    
         
             
                        if (property.name === 'editable') {
         
     | 
| 
       147 
     | 
    
         
            -
                            this 
     | 
| 
       148 
     | 
    
         
            -
                            this 
     | 
| 
      
 178 
     | 
    
         
            +
                            __classPrivateFieldSet(this, _AXNode_richlyEditable, property.value.value === 'richtext', "f");
         
     | 
| 
      
 179 
     | 
    
         
            +
                            __classPrivateFieldSet(this, _AXNode_editable, true, "f");
         
     | 
| 
       149 
180 
     | 
    
         
             
                        }
         
     | 
| 
       150 
     | 
    
         
            -
                        if (property.name === 'focusable')
         
     | 
| 
       151 
     | 
    
         
            -
                            this 
     | 
| 
       152 
     | 
    
         
            -
                         
     | 
| 
       153 
     | 
    
         
            -
             
     | 
| 
       154 
     | 
    
         
            -
             
     | 
| 
       155 
     | 
    
         
            -
                }
         
     | 
| 
       156 
     | 
    
         
            -
                _isPlainTextField() {
         
     | 
| 
       157 
     | 
    
         
            -
                    if (this._richlyEditable)
         
     | 
| 
       158 
     | 
    
         
            -
                        return false;
         
     | 
| 
       159 
     | 
    
         
            -
                    if (this._editable)
         
     | 
| 
       160 
     | 
    
         
            -
                        return true;
         
     | 
| 
       161 
     | 
    
         
            -
                    return this._role === 'textbox' || this._role === 'searchbox';
         
     | 
| 
       162 
     | 
    
         
            -
                }
         
     | 
| 
       163 
     | 
    
         
            -
                _isTextOnlyObject() {
         
     | 
| 
       164 
     | 
    
         
            -
                    const role = this._role;
         
     | 
| 
       165 
     | 
    
         
            -
                    return role === 'LineBreak' || role === 'text' || role === 'InlineTextBox';
         
     | 
| 
       166 
     | 
    
         
            -
                }
         
     | 
| 
       167 
     | 
    
         
            -
                _hasFocusableChild() {
         
     | 
| 
       168 
     | 
    
         
            -
                    if (this._cachedHasFocusableChild === undefined) {
         
     | 
| 
       169 
     | 
    
         
            -
                        this._cachedHasFocusableChild = false;
         
     | 
| 
       170 
     | 
    
         
            -
                        for (const child of this.children) {
         
     | 
| 
       171 
     | 
    
         
            -
                            if (child._focusable || child._hasFocusableChild()) {
         
     | 
| 
       172 
     | 
    
         
            -
                                this._cachedHasFocusableChild = true;
         
     | 
| 
       173 
     | 
    
         
            -
                                break;
         
     | 
| 
       174 
     | 
    
         
            -
                            }
         
     | 
| 
      
 181 
     | 
    
         
            +
                        if (property.name === 'focusable') {
         
     | 
| 
      
 182 
     | 
    
         
            +
                            __classPrivateFieldSet(this, _AXNode_focusable, property.value.value, "f");
         
     | 
| 
      
 183 
     | 
    
         
            +
                        }
         
     | 
| 
      
 184 
     | 
    
         
            +
                        if (property.name === 'hidden') {
         
     | 
| 
      
 185 
     | 
    
         
            +
                            __classPrivateFieldSet(this, _AXNode_hidden, property.value.value, "f");
         
     | 
| 
       175 
186 
     | 
    
         
             
                        }
         
     | 
| 
       176 
187 
     | 
    
         
             
                    }
         
     | 
| 
       177 
     | 
    
         
            -
                    return this._cachedHasFocusableChild;
         
     | 
| 
       178 
188 
     | 
    
         
             
                }
         
     | 
| 
       179 
189 
     | 
    
         
             
                find(predicate) {
         
     | 
| 
       180 
     | 
    
         
            -
                    if (predicate(this))
         
     | 
| 
      
 190 
     | 
    
         
            +
                    if (predicate(this)) {
         
     | 
| 
       181 
191 
     | 
    
         
             
                        return this;
         
     | 
| 
      
 192 
     | 
    
         
            +
                    }
         
     | 
| 
       182 
193 
     | 
    
         
             
                    for (const child of this.children) {
         
     | 
| 
       183 
194 
     | 
    
         
             
                        const result = child.find(predicate);
         
     | 
| 
       184 
     | 
    
         
            -
                        if (result)
         
     | 
| 
      
 195 
     | 
    
         
            +
                        if (result) {
         
     | 
| 
       185 
196 
     | 
    
         
             
                            return result;
         
     | 
| 
      
 197 
     | 
    
         
            +
                        }
         
     | 
| 
       186 
198 
     | 
    
         
             
                    }
         
     | 
| 
       187 
199 
     | 
    
         
             
                    return null;
         
     | 
| 
       188 
200 
     | 
    
         
             
                }
         
     | 
| 
       189 
201 
     | 
    
         
             
                isLeafNode() {
         
     | 
| 
       190 
     | 
    
         
            -
                    if (!this.children.length)
         
     | 
| 
      
 202 
     | 
    
         
            +
                    if (!this.children.length) {
         
     | 
| 
       191 
203 
     | 
    
         
             
                        return true;
         
     | 
| 
      
 204 
     | 
    
         
            +
                    }
         
     | 
| 
       192 
205 
     | 
    
         
             
                    // These types of objects may have children that we use as internal
         
     | 
| 
       193 
206 
     | 
    
         
             
                    // implementation details, but we want to expose them as leaves to platform
         
     | 
| 
       194 
207 
     | 
    
         
             
                    // accessibility APIs because screen readers might be confused if they find
         
     | 
| 
       195 
208 
     | 
    
         
             
                    // any children.
         
     | 
| 
       196 
     | 
    
         
            -
                    if (this. 
     | 
| 
      
 209 
     | 
    
         
            +
                    if (__classPrivateFieldGet(this, _AXNode_instances, "m", _AXNode_isPlainTextField).call(this) || __classPrivateFieldGet(this, _AXNode_instances, "m", _AXNode_isTextOnlyObject).call(this)) {
         
     | 
| 
       197 
210 
     | 
    
         
             
                        return true;
         
     | 
| 
      
 211 
     | 
    
         
            +
                    }
         
     | 
| 
       198 
212 
     | 
    
         
             
                    // Roles whose children are only presentational according to the ARIA and
         
     | 
| 
       199 
213 
     | 
    
         
             
                    // HTML5 Specs should be hidden from screen readers.
         
     | 
| 
       200 
214 
     | 
    
         
             
                    // (Note that whilst ARIA buttons can have only presentational children, HTML5
         
     | 
| 
       201 
215 
     | 
    
         
             
                    // buttons are allowed to have content.)
         
     | 
| 
       202 
     | 
    
         
            -
                    switch (this 
     | 
| 
      
 216 
     | 
    
         
            +
                    switch (__classPrivateFieldGet(this, _AXNode_role, "f")) {
         
     | 
| 
       203 
217 
     | 
    
         
             
                        case 'doc-cover':
         
     | 
| 
       204 
218 
     | 
    
         
             
                        case 'graphics-symbol':
         
     | 
| 
       205 
219 
     | 
    
         
             
                        case 'img':
         
     | 
| 
         @@ -213,16 +227,19 @@ class AXNode { 
     | 
|
| 
       213 
227 
     | 
    
         
             
                            break;
         
     | 
| 
       214 
228 
     | 
    
         
             
                    }
         
     | 
| 
       215 
229 
     | 
    
         
             
                    // Here and below: Android heuristics
         
     | 
| 
       216 
     | 
    
         
            -
                    if (this. 
     | 
| 
      
 230 
     | 
    
         
            +
                    if (__classPrivateFieldGet(this, _AXNode_instances, "m", _AXNode_hasFocusableChild).call(this)) {
         
     | 
| 
       217 
231 
     | 
    
         
             
                        return false;
         
     | 
| 
       218 
     | 
    
         
            -
                     
     | 
| 
      
 232 
     | 
    
         
            +
                    }
         
     | 
| 
      
 233 
     | 
    
         
            +
                    if (__classPrivateFieldGet(this, _AXNode_focusable, "f") && __classPrivateFieldGet(this, _AXNode_name, "f")) {
         
     | 
| 
       219 
234 
     | 
    
         
             
                        return true;
         
     | 
| 
       220 
     | 
    
         
            -
                     
     | 
| 
      
 235 
     | 
    
         
            +
                    }
         
     | 
| 
      
 236 
     | 
    
         
            +
                    if (__classPrivateFieldGet(this, _AXNode_role, "f") === 'heading' && __classPrivateFieldGet(this, _AXNode_name, "f")) {
         
     | 
| 
       221 
237 
     | 
    
         
             
                        return true;
         
     | 
| 
      
 238 
     | 
    
         
            +
                    }
         
     | 
| 
       222 
239 
     | 
    
         
             
                    return false;
         
     | 
| 
       223 
240 
     | 
    
         
             
                }
         
     | 
| 
       224 
241 
     | 
    
         
             
                isControl() {
         
     | 
| 
       225 
     | 
    
         
            -
                    switch (this 
     | 
| 
      
 242 
     | 
    
         
            +
                    switch (__classPrivateFieldGet(this, _AXNode_role, "f")) {
         
     | 
| 
       226 
243 
     | 
    
         
             
                        case 'button':
         
     | 
| 
       227 
244 
     | 
    
         
             
                        case 'checkbox':
         
     | 
| 
       228 
245 
     | 
    
         
             
                        case 'ColorWell':
         
     | 
| 
         @@ -250,31 +267,39 @@ class AXNode { 
     | 
|
| 
       250 
267 
     | 
    
         
             
                    }
         
     | 
| 
       251 
268 
     | 
    
         
             
                }
         
     | 
| 
       252 
269 
     | 
    
         
             
                isInteresting(insideControl) {
         
     | 
| 
       253 
     | 
    
         
            -
                    const role = this 
     | 
| 
       254 
     | 
    
         
            -
                    if (role === 'Ignored' || this 
     | 
| 
      
 270 
     | 
    
         
            +
                    const role = __classPrivateFieldGet(this, _AXNode_role, "f");
         
     | 
| 
      
 271 
     | 
    
         
            +
                    if (role === 'Ignored' || __classPrivateFieldGet(this, _AXNode_hidden, "f") || __classPrivateFieldGet(this, _AXNode_ignored, "f")) {
         
     | 
| 
       255 
272 
     | 
    
         
             
                        return false;
         
     | 
| 
       256 
     | 
    
         
            -
                     
     | 
| 
      
 273 
     | 
    
         
            +
                    }
         
     | 
| 
      
 274 
     | 
    
         
            +
                    if (__classPrivateFieldGet(this, _AXNode_focusable, "f") || __classPrivateFieldGet(this, _AXNode_richlyEditable, "f")) {
         
     | 
| 
       257 
275 
     | 
    
         
             
                        return true;
         
     | 
| 
      
 276 
     | 
    
         
            +
                    }
         
     | 
| 
       258 
277 
     | 
    
         
             
                    // If it's not focusable but has a control role, then it's interesting.
         
     | 
| 
       259 
     | 
    
         
            -
                    if (this.isControl())
         
     | 
| 
      
 278 
     | 
    
         
            +
                    if (this.isControl()) {
         
     | 
| 
       260 
279 
     | 
    
         
             
                        return true;
         
     | 
| 
      
 280 
     | 
    
         
            +
                    }
         
     | 
| 
       261 
281 
     | 
    
         
             
                    // A non focusable child of a control is not interesting
         
     | 
| 
       262 
     | 
    
         
            -
                    if (insideControl)
         
     | 
| 
      
 282 
     | 
    
         
            +
                    if (insideControl) {
         
     | 
| 
       263 
283 
     | 
    
         
             
                        return false;
         
     | 
| 
       264 
     | 
    
         
            -
                     
     | 
| 
      
 284 
     | 
    
         
            +
                    }
         
     | 
| 
      
 285 
     | 
    
         
            +
                    return this.isLeafNode() && !!__classPrivateFieldGet(this, _AXNode_name, "f");
         
     | 
| 
       265 
286 
     | 
    
         
             
                }
         
     | 
| 
       266 
287 
     | 
    
         
             
                serialize() {
         
     | 
| 
       267 
288 
     | 
    
         
             
                    const properties = new Map();
         
     | 
| 
       268 
     | 
    
         
            -
                    for (const property of this.payload.properties || [])
         
     | 
| 
      
 289 
     | 
    
         
            +
                    for (const property of this.payload.properties || []) {
         
     | 
| 
       269 
290 
     | 
    
         
             
                        properties.set(property.name.toLowerCase(), property.value.value);
         
     | 
| 
       270 
     | 
    
         
            -
                     
     | 
| 
      
 291 
     | 
    
         
            +
                    }
         
     | 
| 
      
 292 
     | 
    
         
            +
                    if (this.payload.name) {
         
     | 
| 
       271 
293 
     | 
    
         
             
                        properties.set('name', this.payload.name.value);
         
     | 
| 
       272 
     | 
    
         
            -
                     
     | 
| 
      
 294 
     | 
    
         
            +
                    }
         
     | 
| 
      
 295 
     | 
    
         
            +
                    if (this.payload.value) {
         
     | 
| 
       273 
296 
     | 
    
         
             
                        properties.set('value', this.payload.value.value);
         
     | 
| 
       274 
     | 
    
         
            -
                     
     | 
| 
      
 297 
     | 
    
         
            +
                    }
         
     | 
| 
      
 298 
     | 
    
         
            +
                    if (this.payload.description) {
         
     | 
| 
       275 
299 
     | 
    
         
             
                        properties.set('description', this.payload.description.value);
         
     | 
| 
      
 300 
     | 
    
         
            +
                    }
         
     | 
| 
       276 
301 
     | 
    
         
             
                    const node = {
         
     | 
| 
       277 
     | 
    
         
            -
                        role: this 
     | 
| 
      
 302 
     | 
    
         
            +
                        role: __classPrivateFieldGet(this, _AXNode_role, "f"),
         
     | 
| 
       278 
303 
     | 
    
         
             
                    };
         
     | 
| 
       279 
304 
     | 
    
         
             
                    const userStringProperties = [
         
     | 
| 
       280 
305 
     | 
    
         
             
                        'name',
         
     | 
| 
         @@ -284,10 +309,13 @@ class AXNode { 
     | 
|
| 
       284 
309 
     | 
    
         
             
                        'roledescription',
         
     | 
| 
       285 
310 
     | 
    
         
             
                        'valuetext',
         
     | 
| 
       286 
311 
     | 
    
         
             
                    ];
         
     | 
| 
       287 
     | 
    
         
            -
                    const getUserStringPropertyValue = (key) =>  
     | 
| 
      
 312 
     | 
    
         
            +
                    const getUserStringPropertyValue = (key) => {
         
     | 
| 
      
 313 
     | 
    
         
            +
                        return properties.get(key);
         
     | 
| 
      
 314 
     | 
    
         
            +
                    };
         
     | 
| 
       288 
315 
     | 
    
         
             
                    for (const userStringProperty of userStringProperties) {
         
     | 
| 
       289 
     | 
    
         
            -
                        if (!properties.has(userStringProperty))
         
     | 
| 
      
 316 
     | 
    
         
            +
                        if (!properties.has(userStringProperty)) {
         
     | 
| 
       290 
317 
     | 
    
         
             
                            continue;
         
     | 
| 
      
 318 
     | 
    
         
            +
                        }
         
     | 
| 
       291 
319 
     | 
    
         
             
                        node[userStringProperty] = getUserStringPropertyValue(userStringProperty);
         
     | 
| 
       292 
320 
     | 
    
         
             
                    }
         
     | 
| 
       293 
321 
     | 
    
         
             
                    const booleanProperties = [
         
     | 
| 
         @@ -301,22 +329,27 @@ class AXNode { 
     | 
|
| 
       301 
329 
     | 
    
         
             
                        'required',
         
     | 
| 
       302 
330 
     | 
    
         
             
                        'selected',
         
     | 
| 
       303 
331 
     | 
    
         
             
                    ];
         
     | 
| 
       304 
     | 
    
         
            -
                    const getBooleanPropertyValue = (key) =>  
     | 
| 
      
 332 
     | 
    
         
            +
                    const getBooleanPropertyValue = (key) => {
         
     | 
| 
      
 333 
     | 
    
         
            +
                        return properties.get(key);
         
     | 
| 
      
 334 
     | 
    
         
            +
                    };
         
     | 
| 
       305 
335 
     | 
    
         
             
                    for (const booleanProperty of booleanProperties) {
         
     | 
| 
       306 
336 
     | 
    
         
             
                        // RootWebArea's treat focus differently than other nodes. They report whether
         
     | 
| 
       307 
337 
     | 
    
         
             
                        // their frame  has focus, not whether focus is specifically on the root
         
     | 
| 
       308 
338 
     | 
    
         
             
                        // node.
         
     | 
| 
       309 
     | 
    
         
            -
                        if (booleanProperty === 'focused' && this 
     | 
| 
      
 339 
     | 
    
         
            +
                        if (booleanProperty === 'focused' && __classPrivateFieldGet(this, _AXNode_role, "f") === 'RootWebArea') {
         
     | 
| 
       310 
340 
     | 
    
         
             
                            continue;
         
     | 
| 
      
 341 
     | 
    
         
            +
                        }
         
     | 
| 
       311 
342 
     | 
    
         
             
                        const value = getBooleanPropertyValue(booleanProperty);
         
     | 
| 
       312 
     | 
    
         
            -
                        if (!value)
         
     | 
| 
      
 343 
     | 
    
         
            +
                        if (!value) {
         
     | 
| 
       313 
344 
     | 
    
         
             
                            continue;
         
     | 
| 
      
 345 
     | 
    
         
            +
                        }
         
     | 
| 
       314 
346 
     | 
    
         
             
                        node[booleanProperty] = getBooleanPropertyValue(booleanProperty);
         
     | 
| 
       315 
347 
     | 
    
         
             
                    }
         
     | 
| 
       316 
348 
     | 
    
         
             
                    const tristateProperties = ['checked', 'pressed'];
         
     | 
| 
       317 
349 
     | 
    
         
             
                    for (const tristateProperty of tristateProperties) {
         
     | 
| 
       318 
     | 
    
         
            -
                        if (!properties.has(tristateProperty))
         
     | 
| 
      
 350 
     | 
    
         
            +
                        if (!properties.has(tristateProperty)) {
         
     | 
| 
       319 
351 
     | 
    
         
             
                            continue;
         
     | 
| 
      
 352 
     | 
    
         
            +
                        }
         
     | 
| 
       320 
353 
     | 
    
         
             
                        const value = properties.get(tristateProperty);
         
     | 
| 
       321 
354 
     | 
    
         
             
                        node[tristateProperty] =
         
     | 
| 
       322 
355 
     | 
    
         
             
                            value === 'mixed' ? 'mixed' : value === 'true' ? true : false;
         
     | 
| 
         @@ -326,10 +359,13 @@ class AXNode { 
     | 
|
| 
       326 
359 
     | 
    
         
             
                        'valuemax',
         
     | 
| 
       327 
360 
     | 
    
         
             
                        'valuemin',
         
     | 
| 
       328 
361 
     | 
    
         
             
                    ];
         
     | 
| 
       329 
     | 
    
         
            -
                    const getNumericalPropertyValue = (key) =>  
     | 
| 
      
 362 
     | 
    
         
            +
                    const getNumericalPropertyValue = (key) => {
         
     | 
| 
      
 363 
     | 
    
         
            +
                        return properties.get(key);
         
     | 
| 
      
 364 
     | 
    
         
            +
                    };
         
     | 
| 
       330 
365 
     | 
    
         
             
                    for (const numericalProperty of numericalProperties) {
         
     | 
| 
       331 
     | 
    
         
            -
                        if (!properties.has(numericalProperty))
         
     | 
| 
      
 366 
     | 
    
         
            +
                        if (!properties.has(numericalProperty)) {
         
     | 
| 
       332 
367 
     | 
    
         
             
                            continue;
         
     | 
| 
      
 368 
     | 
    
         
            +
                        }
         
     | 
| 
       333 
369 
     | 
    
         
             
                        node[numericalProperty] = getNumericalPropertyValue(numericalProperty);
         
     | 
| 
       334 
370 
     | 
    
         
             
                    }
         
     | 
| 
       335 
371 
     | 
    
         
             
                    const tokenProperties = [
         
     | 
| 
         @@ -338,24 +374,52 @@ class AXNode { 
     | 
|
| 
       338 
374 
     | 
    
         
             
                        'invalid',
         
     | 
| 
       339 
375 
     | 
    
         
             
                        'orientation',
         
     | 
| 
       340 
376 
     | 
    
         
             
                    ];
         
     | 
| 
       341 
     | 
    
         
            -
                    const getTokenPropertyValue = (key) =>  
     | 
| 
      
 377 
     | 
    
         
            +
                    const getTokenPropertyValue = (key) => {
         
     | 
| 
      
 378 
     | 
    
         
            +
                        return properties.get(key);
         
     | 
| 
      
 379 
     | 
    
         
            +
                    };
         
     | 
| 
       342 
380 
     | 
    
         
             
                    for (const tokenProperty of tokenProperties) {
         
     | 
| 
       343 
381 
     | 
    
         
             
                        const value = getTokenPropertyValue(tokenProperty);
         
     | 
| 
       344 
     | 
    
         
            -
                        if (!value || value === 'false')
         
     | 
| 
      
 382 
     | 
    
         
            +
                        if (!value || value === 'false') {
         
     | 
| 
       345 
383 
     | 
    
         
             
                            continue;
         
     | 
| 
      
 384 
     | 
    
         
            +
                        }
         
     | 
| 
       346 
385 
     | 
    
         
             
                        node[tokenProperty] = getTokenPropertyValue(tokenProperty);
         
     | 
| 
       347 
386 
     | 
    
         
             
                    }
         
     | 
| 
       348 
387 
     | 
    
         
             
                    return node;
         
     | 
| 
       349 
388 
     | 
    
         
             
                }
         
     | 
| 
       350 
389 
     | 
    
         
             
                static createTree(payloads) {
         
     | 
| 
       351 
390 
     | 
    
         
             
                    const nodeById = new Map();
         
     | 
| 
       352 
     | 
    
         
            -
                    for (const payload of payloads)
         
     | 
| 
      
 391 
     | 
    
         
            +
                    for (const payload of payloads) {
         
     | 
| 
       353 
392 
     | 
    
         
             
                        nodeById.set(payload.nodeId, new AXNode(payload));
         
     | 
| 
      
 393 
     | 
    
         
            +
                    }
         
     | 
| 
       354 
394 
     | 
    
         
             
                    for (const node of nodeById.values()) {
         
     | 
| 
       355 
     | 
    
         
            -
                        for (const childId of node.payload.childIds || [])
         
     | 
| 
      
 395 
     | 
    
         
            +
                        for (const childId of node.payload.childIds || []) {
         
     | 
| 
       356 
396 
     | 
    
         
             
                            node.children.push(nodeById.get(childId));
         
     | 
| 
      
 397 
     | 
    
         
            +
                        }
         
     | 
| 
       357 
398 
     | 
    
         
             
                    }
         
     | 
| 
       358 
399 
     | 
    
         
             
                    return nodeById.values().next().value;
         
     | 
| 
       359 
400 
     | 
    
         
             
                }
         
     | 
| 
       360 
401 
     | 
    
         
             
            }
         
     | 
| 
      
 402 
     | 
    
         
            +
            _AXNode_richlyEditable = new WeakMap(), _AXNode_editable = new WeakMap(), _AXNode_focusable = new WeakMap(), _AXNode_hidden = new WeakMap(), _AXNode_name = new WeakMap(), _AXNode_role = new WeakMap(), _AXNode_ignored = new WeakMap(), _AXNode_cachedHasFocusableChild = new WeakMap(), _AXNode_instances = new WeakSet(), _AXNode_isPlainTextField = function _AXNode_isPlainTextField() {
         
     | 
| 
      
 403 
     | 
    
         
            +
                if (__classPrivateFieldGet(this, _AXNode_richlyEditable, "f")) {
         
     | 
| 
      
 404 
     | 
    
         
            +
                    return false;
         
     | 
| 
      
 405 
     | 
    
         
            +
                }
         
     | 
| 
      
 406 
     | 
    
         
            +
                if (__classPrivateFieldGet(this, _AXNode_editable, "f")) {
         
     | 
| 
      
 407 
     | 
    
         
            +
                    return true;
         
     | 
| 
      
 408 
     | 
    
         
            +
                }
         
     | 
| 
      
 409 
     | 
    
         
            +
                return __classPrivateFieldGet(this, _AXNode_role, "f") === 'textbox' || __classPrivateFieldGet(this, _AXNode_role, "f") === 'searchbox';
         
     | 
| 
      
 410 
     | 
    
         
            +
            }, _AXNode_isTextOnlyObject = function _AXNode_isTextOnlyObject() {
         
     | 
| 
      
 411 
     | 
    
         
            +
                const role = __classPrivateFieldGet(this, _AXNode_role, "f");
         
     | 
| 
      
 412 
     | 
    
         
            +
                return role === 'LineBreak' || role === 'text' || role === 'InlineTextBox';
         
     | 
| 
      
 413 
     | 
    
         
            +
            }, _AXNode_hasFocusableChild = function _AXNode_hasFocusableChild() {
         
     | 
| 
      
 414 
     | 
    
         
            +
                if (__classPrivateFieldGet(this, _AXNode_cachedHasFocusableChild, "f") === undefined) {
         
     | 
| 
      
 415 
     | 
    
         
            +
                    __classPrivateFieldSet(this, _AXNode_cachedHasFocusableChild, false, "f");
         
     | 
| 
      
 416 
     | 
    
         
            +
                    for (const child of this.children) {
         
     | 
| 
      
 417 
     | 
    
         
            +
                        if (__classPrivateFieldGet(child, _AXNode_focusable, "f") || __classPrivateFieldGet(child, _AXNode_instances, "m", _AXNode_hasFocusableChild).call(child)) {
         
     | 
| 
      
 418 
     | 
    
         
            +
                            __classPrivateFieldSet(this, _AXNode_cachedHasFocusableChild, true, "f");
         
     | 
| 
      
 419 
     | 
    
         
            +
                            break;
         
     | 
| 
      
 420 
     | 
    
         
            +
                        }
         
     | 
| 
      
 421 
     | 
    
         
            +
                    }
         
     | 
| 
      
 422 
     | 
    
         
            +
                }
         
     | 
| 
      
 423 
     | 
    
         
            +
                return __classPrivateFieldGet(this, _AXNode_cachedHasFocusableChild, "f");
         
     | 
| 
      
 424 
     | 
    
         
            +
            };
         
     | 
| 
       361 
425 
     | 
    
         
             
            //# sourceMappingURL=Accessibility.js.map
         
     | 
    
        package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Accessibility.js.map
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Accessibility.js","sourceRoot":"","sources":["../../../../src/common/Accessibility.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Accessibility.js","sourceRoot":"","sources":["../../../../src/common/Accessibility.ts"],"names":[],"mappings":"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"}
         
     | 
    
        package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.d.ts.map
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"AriaQueryHandler.d.ts","sourceRoot":"","sources":["../../../../src/common/AriaQueryHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"AriaQueryHandler.d.ts","sourceRoot":"","sources":["../../../../src/common/AriaQueryHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAQH,OAAO,EAAC,oBAAoB,EAAC,MAAM,mBAAmB,CAAC;AAmIvD;;GAEG;AACH,eAAO,MAAM,WAAW,EAAE,oBAKzB,CAAC"}
         
     | 
    
        package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js
    CHANGED
    
    | 
         @@ -16,36 +16,54 @@ 
     | 
|
| 
       16 
16 
     | 
    
         
             
             */
         
     | 
| 
       17 
17 
     | 
    
         
             
            Object.defineProperty(exports, "__esModule", { value: true });
         
     | 
| 
       18 
18 
     | 
    
         
             
            exports.ariaHandler = void 0;
         
     | 
| 
      
 19 
     | 
    
         
            +
            const assert_js_1 = require("./assert.js");
         
     | 
| 
       19 
20 
     | 
    
         
             
            async function queryAXTree(client, element, accessibleName, role) {
         
     | 
| 
       20 
21 
     | 
    
         
             
                const { nodes } = await client.send('Accessibility.queryAXTree', {
         
     | 
| 
       21 
22 
     | 
    
         
             
                    objectId: element._remoteObject.objectId,
         
     | 
| 
       22 
23 
     | 
    
         
             
                    accessibleName,
         
     | 
| 
       23 
24 
     | 
    
         
             
                    role,
         
     | 
| 
       24 
25 
     | 
    
         
             
                });
         
     | 
| 
       25 
     | 
    
         
            -
                const filteredNodes = nodes.filter((node) =>  
     | 
| 
      
 26 
     | 
    
         
            +
                const filteredNodes = nodes.filter((node) => {
         
     | 
| 
      
 27 
     | 
    
         
            +
                    return !node.role || node.role.value !== 'StaticText';
         
     | 
| 
      
 28 
     | 
    
         
            +
                });
         
     | 
| 
       26 
29 
     | 
    
         
             
                return filteredNodes;
         
     | 
| 
       27 
30 
     | 
    
         
             
            }
         
     | 
| 
       28 
     | 
    
         
            -
            const normalizeValue = (value) =>  
     | 
| 
      
 31 
     | 
    
         
            +
            const normalizeValue = (value) => {
         
     | 
| 
      
 32 
     | 
    
         
            +
                return value.replace(/ +/g, ' ').trim();
         
     | 
| 
      
 33 
     | 
    
         
            +
            };
         
     | 
| 
       29 
34 
     | 
    
         
             
            const knownAttributes = new Set(['name', 'role']);
         
     | 
| 
       30 
35 
     | 
    
         
             
            const attributeRegexp = /\[\s*(?<attribute>\w+)\s*=\s*(?<quote>"|')(?<value>\\.|.*?(?=\k<quote>))\k<quote>\s*\]/g;
         
     | 
| 
      
 36 
     | 
    
         
            +
            function isKnownAttribute(attribute) {
         
     | 
| 
      
 37 
     | 
    
         
            +
                return knownAttributes.has(attribute);
         
     | 
| 
      
 38 
     | 
    
         
            +
            }
         
     | 
| 
      
 39 
     | 
    
         
            +
            /*
         
     | 
| 
      
 40 
     | 
    
         
            +
             * The selectors consist of an accessible name to query for and optionally
         
     | 
| 
      
 41 
     | 
    
         
            +
             * further aria attributes on the form `[<attribute>=<value>]`.
         
     | 
| 
      
 42 
     | 
    
         
            +
             * Currently, we only support the `name` and `role` attribute.
         
     | 
| 
      
 43 
     | 
    
         
            +
             * The following examples showcase how the syntax works wrt. querying:
         
     | 
| 
      
 44 
     | 
    
         
            +
             * - 'title[role="heading"]' queries for elements with name 'title' and role 'heading'.
         
     | 
| 
      
 45 
     | 
    
         
            +
             * - '[role="img"]' queries for elements with role 'img' and any name.
         
     | 
| 
      
 46 
     | 
    
         
            +
             * - 'label' queries for elements with name 'label' and any role.
         
     | 
| 
      
 47 
     | 
    
         
            +
             * - '[name=""][role="button"]' queries for elements with no name and role 'button'.
         
     | 
| 
      
 48 
     | 
    
         
            +
             */
         
     | 
| 
       31 
49 
     | 
    
         
             
            function parseAriaSelector(selector) {
         
     | 
| 
       32 
50 
     | 
    
         
             
                const queryOptions = {};
         
     | 
| 
       33 
     | 
    
         
            -
                const defaultName = selector.replace(attributeRegexp, (_, attribute,  
     | 
| 
      
 51 
     | 
    
         
            +
                const defaultName = selector.replace(attributeRegexp, (_, attribute, _quote, value) => {
         
     | 
| 
       34 
52 
     | 
    
         
             
                    attribute = attribute.trim();
         
     | 
| 
       35 
     | 
    
         
            -
                     
     | 
| 
       36 
     | 
    
         
            -
                        throw new Error(`Unknown aria attribute "${attribute}" in selector`);
         
     | 
| 
      
 53 
     | 
    
         
            +
                    (0, assert_js_1.assert)(isKnownAttribute(attribute), `Unknown aria attribute "${attribute}" in selector`);
         
     | 
| 
       37 
54 
     | 
    
         
             
                    queryOptions[attribute] = normalizeValue(value);
         
     | 
| 
       38 
55 
     | 
    
         
             
                    return '';
         
     | 
| 
       39 
56 
     | 
    
         
             
                });
         
     | 
| 
       40 
     | 
    
         
            -
                if (defaultName && !queryOptions.name)
         
     | 
| 
      
 57 
     | 
    
         
            +
                if (defaultName && !queryOptions.name) {
         
     | 
| 
       41 
58 
     | 
    
         
             
                    queryOptions.name = normalizeValue(defaultName);
         
     | 
| 
      
 59 
     | 
    
         
            +
                }
         
     | 
| 
       42 
60 
     | 
    
         
             
                return queryOptions;
         
     | 
| 
       43 
61 
     | 
    
         
             
            }
         
     | 
| 
       44 
62 
     | 
    
         
             
            const queryOne = async (element, selector) => {
         
     | 
| 
       45 
63 
     | 
    
         
             
                const exeCtx = element.executionContext();
         
     | 
| 
       46 
64 
     | 
    
         
             
                const { name, role } = parseAriaSelector(selector);
         
     | 
| 
       47 
65 
     | 
    
         
             
                const res = await queryAXTree(exeCtx._client, element, name, role);
         
     | 
| 
       48 
     | 
    
         
            -
                if (res 
     | 
| 
      
 66 
     | 
    
         
            +
                if (!res[0] || !res[0].backendDOMNodeId) {
         
     | 
| 
       49 
67 
     | 
    
         
             
                    return null;
         
     | 
| 
       50 
68 
     | 
    
         
             
                }
         
     | 
| 
       51 
69 
     | 
    
         
             
                return exeCtx._adoptBackendNodeId(res[0].backendDOMNodeId);
         
     | 
| 
         @@ -59,18 +77,24 @@ const waitFor = async (domWorld, selector, options) => { 
     | 
|
| 
       59 
77 
     | 
    
         
             
                        return element;
         
     | 
| 
       60 
78 
     | 
    
         
             
                    },
         
     | 
| 
       61 
79 
     | 
    
         
             
                };
         
     | 
| 
       62 
     | 
    
         
            -
                return domWorld. 
     | 
| 
      
 80 
     | 
    
         
            +
                return (await domWorld._waitForSelectorInPage((_, selector) => {
         
     | 
| 
      
 81 
     | 
    
         
            +
                    return globalThis.ariaQuerySelector(selector);
         
     | 
| 
      
 82 
     | 
    
         
            +
                }, selector, options, binding));
         
     | 
| 
       63 
83 
     | 
    
         
             
            };
         
     | 
| 
       64 
84 
     | 
    
         
             
            const queryAll = async (element, selector) => {
         
     | 
| 
       65 
85 
     | 
    
         
             
                const exeCtx = element.executionContext();
         
     | 
| 
       66 
86 
     | 
    
         
             
                const { name, role } = parseAriaSelector(selector);
         
     | 
| 
       67 
87 
     | 
    
         
             
                const res = await queryAXTree(exeCtx._client, element, name, role);
         
     | 
| 
       68 
     | 
    
         
            -
                return Promise.all(res.map( 
     | 
| 
      
 88 
     | 
    
         
            +
                return Promise.all(res.map(axNode => {
         
     | 
| 
      
 89 
     | 
    
         
            +
                    return exeCtx._adoptBackendNodeId(axNode.backendDOMNodeId);
         
     | 
| 
      
 90 
     | 
    
         
            +
                }));
         
     | 
| 
       69 
91 
     | 
    
         
             
            };
         
     | 
| 
       70 
92 
     | 
    
         
             
            const queryAllArray = async (element, selector) => {
         
     | 
| 
       71 
93 
     | 
    
         
             
                const elementHandles = await queryAll(element, selector);
         
     | 
| 
       72 
94 
     | 
    
         
             
                const exeCtx = element.executionContext();
         
     | 
| 
       73 
     | 
    
         
            -
                const jsHandle = exeCtx.evaluateHandle((...elements) =>  
     | 
| 
      
 95 
     | 
    
         
            +
                const jsHandle = exeCtx.evaluateHandle((...elements) => {
         
     | 
| 
      
 96 
     | 
    
         
            +
                    return elements;
         
     | 
| 
      
 97 
     | 
    
         
            +
                }, ...elementHandles);
         
     | 
| 
       74 
98 
     | 
    
         
             
                return jsHandle;
         
     | 
| 
       75 
99 
     | 
    
         
             
            };
         
     | 
| 
       76 
100 
     | 
    
         
             
            /**
         
     | 
    
        package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/AriaQueryHandler.js.map
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"AriaQueryHandler.js","sourceRoot":"","sources":["../../../../src/common/AriaQueryHandler.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"AriaQueryHandler.js","sourceRoot":"","sources":["../../../../src/common/AriaQueryHandler.ts"],"names":[],"mappings":"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"}
         
     |