chrome-devtools-frontend 1.0.1636056 → 1.0.1640418

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.
Files changed (171) hide show
  1. package/front_end/core/common/Color.ts +0 -4
  2. package/front_end/core/host/AidaClientTypes.ts +8 -6
  3. package/front_end/core/root/Runtime.ts +2 -2
  4. package/front_end/core/sdk/DOMStorageModel.ts +1 -1
  5. package/front_end/core/sdk/SourceMap.ts +8 -3
  6. package/front_end/core/sdk/TargetManager.ts +14 -1
  7. package/front_end/entrypoints/heap_snapshot_worker/HeapSnapshot.ts +147 -0
  8. package/front_end/generated/ARIAProperties.js +17 -4
  9. package/front_end/generated/InspectorBackendCommands.ts +13 -7
  10. package/front_end/generated/SupportedCSSProperties.js +1 -0
  11. package/front_end/generated/protocol-mapping.d.ts +7 -0
  12. package/front_end/generated/protocol-proxy-api.d.ts +14 -0
  13. package/front_end/generated/protocol.ts +120 -2
  14. package/front_end/global_typings/global_defs.d.ts +13 -0
  15. package/front_end/models/ai_assistance/AiAgent2.ts +116 -0
  16. package/front_end/models/ai_assistance/AiConversation.ts +22 -36
  17. package/front_end/models/ai_assistance/AiHistoryStorage.ts +0 -1
  18. package/front_end/models/ai_assistance/AiOrigins.ts +46 -0
  19. package/front_end/models/ai_assistance/AiUtils.ts +9 -0
  20. package/front_end/models/ai_assistance/README.md +16 -0
  21. package/front_end/models/ai_assistance/StorageItem.ts +30 -26
  22. package/front_end/models/ai_assistance/agents/AccessibilityAgent.ts +12 -5
  23. package/front_end/models/ai_assistance/agents/AiAgent.ts +86 -32
  24. package/front_end/models/ai_assistance/agents/ContextSelectionAgent.snapshot.txt +2 -2
  25. package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +31 -10
  26. package/front_end/models/ai_assistance/agents/ConversationSummaryAgent.ts +1 -1
  27. package/front_end/models/ai_assistance/agents/FileAgent.ts +2 -2
  28. package/front_end/models/ai_assistance/agents/GreenDevAgent.ts +1 -3
  29. package/front_end/models/ai_assistance/agents/NetworkAgent.snapshot.txt +19 -0
  30. package/front_end/models/ai_assistance/agents/NetworkAgent.ts +9 -4
  31. package/front_end/models/ai_assistance/agents/PerformanceAgent.snapshot.txt +2 -2
  32. package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +41 -12
  33. package/front_end/models/ai_assistance/agents/StorageAgent.ts +442 -122
  34. package/front_end/models/ai_assistance/agents/StylingAgent.ts +2 -2
  35. package/front_end/models/ai_assistance/ai_assistance.ts +4 -2
  36. package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +2 -2
  37. package/front_end/models/ai_assistance/performance/AIContext.ts +7 -8
  38. package/front_end/models/ai_assistance/skills/README.md +40 -0
  39. package/front_end/models/ai_assistance/skills/Skill.ts +13 -0
  40. package/front_end/models/ai_assistance/skills/SkillRegistry.ts +10 -0
  41. package/front_end/models/ai_assistance/skills/styling.md +6 -0
  42. package/front_end/models/bindings/CompilerScriptMapping.ts +12 -4
  43. package/front_end/models/breakpoints/BreakpointManager.ts +54 -2
  44. package/front_end/models/greendev/Prototypes.ts +0 -7
  45. package/front_end/models/heap_snapshot/HeapSnapshotModel.ts +20 -0
  46. package/front_end/models/heap_snapshot/HeapSnapshotProxy.ts +5 -0
  47. package/front_end/models/issues_manager/EmailVerificationRequestIssue.ts +293 -0
  48. package/front_end/models/issues_manager/IssuesManager.ts +5 -0
  49. package/front_end/models/issues_manager/descriptions/emailVerificationRequestDnsFetchFailed.md +1 -0
  50. package/front_end/models/issues_manager/descriptions/emailVerificationRequestDnsInvalidRecord.md +1 -0
  51. package/front_end/models/issues_manager/descriptions/emailVerificationRequestInvalidEmail.md +1 -0
  52. package/front_end/models/issues_manager/descriptions/emailVerificationRequestKeyBindingSigningFailed.md +1 -0
  53. package/front_end/models/issues_manager/descriptions/emailVerificationRequestRpOriginIsOpaque.md +1 -0
  54. package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenHttpNotFound.md +1 -0
  55. package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidContentType.md +1 -0
  56. package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidResponse.md +1 -0
  57. package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenInvalidSdJwt.md +1 -0
  58. package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenMalformedSdJwt.md +1 -0
  59. package/front_end/models/issues_manager/descriptions/emailVerificationRequestTokenNoResponse.md +1 -0
  60. package/front_end/models/issues_manager/descriptions/emailVerificationRequestUserLoggedOut.md +1 -0
  61. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownAccountsEndpointCrossOrigin.md +1 -0
  62. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownHttpNotFound.md +1 -0
  63. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownInvalidContentType.md +1 -0
  64. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownInvalidResponse.md +1 -0
  65. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownIssuanceEndpointCrossOrigin.md +1 -0
  66. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownListEmpty.md +1 -0
  67. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownMissingAccountsEndpoint.md +1 -0
  68. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownMissingIssuanceEndpoint.md +1 -0
  69. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownNoResponse.md +1 -0
  70. package/front_end/models/issues_manager/descriptions/emailVerificationRequestWellKnownUnsupportedSigningAlgorithm.md +1 -0
  71. package/front_end/models/issues_manager/issues_manager.ts +2 -0
  72. package/front_end/models/javascript_metadata/NativeFunctions.js +1748 -1739
  73. package/front_end/models/live-metrics/web-vitals-injected/web-vitals-injected.ts +1 -1
  74. package/front_end/models/stack_trace/DetailedErrorStackParser.ts +9 -1
  75. package/front_end/models/stack_trace/StackTraceImpl.ts +29 -9
  76. package/front_end/models/stack_trace/StackTraceModel.ts +23 -11
  77. package/front_end/models/stack_trace/Trie.ts +11 -1
  78. package/front_end/models/trace/extras/TraceTree.ts +20 -1
  79. package/front_end/models/trace/insights/Common.ts +9 -0
  80. package/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +21 -25
  81. package/front_end/panels/ai_assistance/AiAssistancePanel.ts +19 -75
  82. package/front_end/panels/ai_assistance/components/AccessibilityAgentMarkdownRenderer.ts +10 -3
  83. package/front_end/panels/ai_assistance/components/ChatMessage.ts +148 -2
  84. package/front_end/panels/ai_assistance/components/PerformanceAgentMarkdownRenderer.ts +2 -3
  85. package/front_end/panels/ai_assistance/components/chatMessage.css +27 -0
  86. package/front_end/panels/application/CookieItemsView.ts +24 -0
  87. package/front_end/panels/application/DOMStorageItemsView.ts +9 -4
  88. package/front_end/panels/application/preloading/components/PreloadingString.ts +6 -0
  89. package/front_end/panels/application/preloading/components/UsedPreloadingView.ts +4 -4
  90. package/front_end/panels/console/ConsoleViewMessage.ts +13 -102
  91. package/front_end/panels/elements/StandaloneStylesContainer.ts +10 -0
  92. package/front_end/panels/elements/StylePropertiesSection.ts +6 -2
  93. package/front_end/panels/elements/StylePropertyTreeElement.ts +30 -1
  94. package/front_end/panels/elements/StylesContainer.ts +3 -0
  95. package/front_end/panels/elements/StylesSidebarPane.ts +54 -4
  96. package/front_end/panels/elements/elements-meta.ts +14 -0
  97. package/front_end/panels/layer_viewer/layerDetailsView.css +1 -1
  98. package/front_end/panels/lighthouse/LighthouseController.ts +1 -1
  99. package/front_end/panels/lighthouse/LighthouseProtocolService.ts +4 -4
  100. package/front_end/panels/network/NetworkDataGridNode.ts +14 -0
  101. package/front_end/panels/network/NetworkLogViewColumns.ts +2 -2
  102. package/front_end/panels/network/RequestHeadersView.ts +55 -19
  103. package/front_end/panels/network/networkTimingTable.css +2 -4
  104. package/front_end/panels/recorder/components/ReplaySection.ts +28 -16
  105. package/front_end/panels/recorder/converters/LighthouseConverter.snapshot.txt +47 -0
  106. package/front_end/panels/recorder/converters/PuppeteerConverter.snapshot.txt +49 -0
  107. package/front_end/panels/recorder/converters/PuppeteerReplayConverter.snapshot.txt +33 -0
  108. package/front_end/panels/settings/SettingsScreen.ts +1 -2
  109. package/front_end/panels/sources/BreakpointsView.ts +23 -42
  110. package/front_end/panels/sources/DebuggerPlugin.ts +12 -5
  111. package/front_end/panels/sources/ScopeChainSidebarPane.ts +169 -106
  112. package/front_end/panels/timeline/components/IgnoreListSetting.ts +1 -0
  113. package/front_end/third_party/chromium/README.chromium +1 -1
  114. package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +2 -2
  115. package/front_end/third_party/marked/README.chromium +3 -6
  116. package/front_end/third_party/marked/package/README.md +5 -5
  117. package/front_end/third_party/marked/package/bin/main.js +27 -22
  118. package/front_end/third_party/marked/package/bin/marked.js +2 -1
  119. package/front_end/third_party/marked/package/lib/marked.esm.d.ts +346 -256
  120. package/front_end/third_party/marked/package/lib/marked.esm.js +67 -2698
  121. package/front_end/third_party/marked/package/lib/marked.esm.js.map +7 -1
  122. package/front_end/third_party/marked/package/lib/marked.umd.js +69 -2722
  123. package/front_end/third_party/marked/package/lib/marked.umd.js.map +7 -1
  124. package/front_end/third_party/marked/package/man/marked.1 +4 -2
  125. package/front_end/third_party/marked/package/man/marked.1.md +2 -1
  126. package/front_end/third_party/marked/package/package.json +49 -57
  127. package/front_end/third_party/puppeteer-replay/README.chromium +2 -2
  128. package/front_end/third_party/puppeteer-replay/package/lib/cli.js +84 -80
  129. package/front_end/third_party/puppeteer-replay/package/lib/cli.js.map +1 -1
  130. package/front_end/third_party/puppeteer-replay/package/lib/extension-test.js +79 -83
  131. package/front_end/third_party/puppeteer-replay/package/lib/extension-test.js.map +1 -1
  132. package/front_end/third_party/puppeteer-replay/package/lib/main.d.ts +43 -171
  133. package/front_end/third_party/puppeteer-replay/package/lib/main.js +51 -206
  134. package/front_end/third_party/puppeteer-replay/package/lib/main.js.map +1 -1
  135. package/front_end/third_party/puppeteer-replay/package/package.json +37 -67
  136. package/front_end/tsconfig.json +1 -1
  137. package/front_end/ui/components/markdown_view/CodeBlock.ts +17 -6
  138. package/front_end/ui/components/markdown_view/MarkdownView.ts +39 -3
  139. package/front_end/ui/components/markdown_view/codeBlock.css +11 -0
  140. package/front_end/ui/components/markdown_view/markdownView.css +17 -0
  141. package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +0 -79
  142. package/front_end/ui/legacy/components/object_ui/RemoteObjectPreviewFormatter.ts +16 -4
  143. package/front_end/ui/visual_logging/KnownContextValues.ts +4 -0
  144. package/inspector_overlay/testing/InspectorOverlayHelpers.ts +2 -0
  145. package/mcp/mcp.ts +1 -6
  146. package/package.json +14 -16
  147. package/front_end/models/ai_assistance/agents/BreakpointDebuggerAgent.ts +0 -1015
  148. package/front_end/models/ai_assistance/agents/BreakpointDebuggerAgentOverlay.ts +0 -87
  149. package/front_end/third_party/marked/package/bin/marked +0 -215
  150. package/front_end/third_party/marked/package/lib/marked.cjs +0 -2726
  151. package/front_end/third_party/marked/package/lib/marked.cjs.map +0 -1
  152. package/front_end/third_party/marked/package/lib/marked.d.cts +0 -670
  153. package/front_end/third_party/marked/package/lib/marked.js +0 -2780
  154. package/front_end/third_party/marked/package/man/marked.1.txt +0 -86
  155. package/front_end/third_party/marked/package/marked.min.js +0 -6
  156. package/front_end/third_party/marked/package/src/Lexer.js +0 -492
  157. package/front_end/third_party/marked/package/src/Parser.js +0 -286
  158. package/front_end/third_party/marked/package/src/Renderer.js +0 -166
  159. package/front_end/third_party/marked/package/src/Slugger.js +0 -49
  160. package/front_end/third_party/marked/package/src/TextRenderer.js +0 -42
  161. package/front_end/third_party/marked/package/src/Tokenizer.js +0 -755
  162. package/front_end/third_party/marked/package/src/defaults.js +0 -29
  163. package/front_end/third_party/marked/package/src/helpers.js +0 -249
  164. package/front_end/third_party/marked/package/src/marked.js +0 -350
  165. package/front_end/third_party/marked/package/src/rules.js +0 -285
  166. package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs +0 -2099
  167. package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.cjs.map +0 -1
  168. package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.d.cts +0 -686
  169. package/front_end/third_party/puppeteer-replay/package/lib/cjs/main.d.ts +0 -35
  170. package/mcp/HostBindings.ts +0 -319
  171. /package/front_end/third_party/marked/package/{LICENSE.md → LICENSE} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"extension-test.js","sources":["../src/CLIUtils.ts","../src/Spec.ts","../src/extension-test.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"extension-test.js","sources":["../src/CLIUtils.ts","../src/Spec.ts","../src/extension-test.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":"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"}
@@ -13,19 +13,9 @@ type JSONArray = JSONValue[];
13
13
  type JSONSerializable<Object extends object> = PickType<Object, JSONValue>;
14
14
 
15
15
  /**
16
- Copyright 2022 Google LLC
17
-
18
- Licensed under the Apache License, Version 2.0 (the "License");
19
- you may not use this file except in compliance with the License.
20
- You may obtain a copy of the License at
21
-
22
- https://www.apache.org/licenses/LICENSE-2.0
23
-
24
- Unless required by applicable law or agreed to in writing, software
25
- distributed under the License is distributed on an "AS IS" BASIS,
26
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
27
- See the License for the specific language governing permissions and
28
- limitations under the License.
16
+ * @license
17
+ * Copyright 2022 Google LLC
18
+ * SPDX-License-Identifier: Apache-2.0
29
19
  */
30
20
 
31
21
  type Target = string;
@@ -321,23 +311,14 @@ type Schema_UserStep = UserStep;
321
311
  type Schema_WaitForElementStep = WaitForElementStep;
322
312
  type Schema_WaitForExpressionStep = WaitForExpressionStep;
323
313
  declare namespace Schema {
324
- export { type Schema_AssertedEvent as AssertedEvent, Schema_AssertedEventType as AssertedEventType, type Schema_AssertionStep as AssertionStep, type Schema_BaseStep as BaseStep, type Schema_ChangeStep as ChangeStep, type Schema_ClickAttributes as ClickAttributes, type Schema_ClickStep as ClickStep, type Schema_CloseStep as CloseStep, type Schema_CustomStep as CustomStep, type Schema_CustomStepParams as CustomStepParams, type Schema_DoubleClickStep as DoubleClickStep, type Schema_EmulateNetworkConditionsStep as EmulateNetworkConditionsStep, type Schema_FrameSelector as FrameSelector, type Schema_HoverStep as HoverStep, type Schema_Key as Key, type Schema_KeyDownStep as KeyDownStep, type Schema_KeyUpStep as KeyUpStep, type Schema_NavigateStep as NavigateStep, type Schema_NavigationEvent as NavigationEvent, type Schema_Pattern as Pattern, type Schema_PointerButtonType as PointerButtonType, type Schema_PointerDeviceType as PointerDeviceType, type Schema_ScrollElementStep as ScrollElementStep, type Schema_ScrollPageStep as ScrollPageStep, type Schema_ScrollStep as ScrollStep, type Schema_Selector as Selector, Schema_SelectorType as SelectorType, type Schema_SetViewportStep as SetViewportStep, type Schema_Step as Step, Schema_StepType as StepType, type Schema_StepWithFrame as StepWithFrame, type Schema_StepWithSelectors as StepWithSelectors, type Schema_StepWithTarget as StepWithTarget, type Schema_Target as Target, type Schema_UserFlow as UserFlow, type Schema_UserStep as UserStep, type Schema_WaitForElementStep as WaitForElementStep, type Schema_WaitForExpressionStep as WaitForExpressionStep };
314
+ export { Schema_AssertedEventType as AssertedEventType, Schema_SelectorType as SelectorType, Schema_StepType as StepType };
315
+ export type { Schema_AssertedEvent as AssertedEvent, Schema_AssertionStep as AssertionStep, Schema_BaseStep as BaseStep, Schema_ChangeStep as ChangeStep, Schema_ClickAttributes as ClickAttributes, Schema_ClickStep as ClickStep, Schema_CloseStep as CloseStep, Schema_CustomStep as CustomStep, Schema_CustomStepParams as CustomStepParams, Schema_DoubleClickStep as DoubleClickStep, Schema_EmulateNetworkConditionsStep as EmulateNetworkConditionsStep, Schema_FrameSelector as FrameSelector, Schema_HoverStep as HoverStep, Schema_Key as Key, Schema_KeyDownStep as KeyDownStep, Schema_KeyUpStep as KeyUpStep, Schema_NavigateStep as NavigateStep, Schema_NavigationEvent as NavigationEvent, Schema_Pattern as Pattern, Schema_PointerButtonType as PointerButtonType, Schema_PointerDeviceType as PointerDeviceType, Schema_ScrollElementStep as ScrollElementStep, Schema_ScrollPageStep as ScrollPageStep, Schema_ScrollStep as ScrollStep, Schema_Selector as Selector, Schema_SetViewportStep as SetViewportStep, Schema_Step as Step, Schema_StepWithFrame as StepWithFrame, Schema_StepWithSelectors as StepWithSelectors, Schema_StepWithTarget as StepWithTarget, Schema_Target as Target, Schema_UserFlow as UserFlow, Schema_UserStep as UserStep, Schema_WaitForElementStep as WaitForElementStep, Schema_WaitForExpressionStep as WaitForExpressionStep };
325
316
  }
326
317
 
327
318
  /**
328
- Copyright 2022 Google LLC
329
-
330
- Licensed under the Apache License, Version 2.0 (the "License");
331
- you may not use this file except in compliance with the License.
332
- You may obtain a copy of the License at
333
-
334
- https://www.apache.org/licenses/LICENSE-2.0
335
-
336
- Unless required by applicable law or agreed to in writing, software
337
- distributed under the License is distributed on an "AS IS" BASIS,
338
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
339
- See the License for the specific language governing permissions and
340
- limitations under the License.
319
+ * @license
320
+ * Copyright 2022 Google LLC
321
+ * SPDX-License-Identifier: Apache-2.0
341
322
  */
342
323
 
343
324
  declare function assertAllStepTypesAreHandled(s: never): never;
@@ -365,19 +346,9 @@ declare function getSelectorType(selector: string): SelectorType;
365
346
  declare function selectorToPElementSelector(selector: string[] | string): string;
366
347
 
367
348
  /**
368
- Copyright 2022 Google LLC
369
-
370
- Licensed under the Apache License, Version 2.0 (the "License");
371
- you may not use this file except in compliance with the License.
372
- You may obtain a copy of the License at
373
-
374
- https://www.apache.org/licenses/LICENSE-2.0
375
-
376
- Unless required by applicable law or agreed to in writing, software
377
- distributed under the License is distributed on an "AS IS" BASIS,
378
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
379
- See the License for the specific language governing permissions and
380
- limitations under the License.
349
+ * @license
350
+ * Copyright 2022 Google LLC
351
+ * SPDX-License-Identifier: Apache-2.0
381
352
  */
382
353
  interface LineWriter {
383
354
  appendLine(line: string): LineWriter;
@@ -388,19 +359,9 @@ interface LineWriter {
388
359
  }
389
360
 
390
361
  /**
391
- Copyright 2022 Google LLC
392
-
393
- Licensed under the Apache License, Version 2.0 (the "License");
394
- you may not use this file except in compliance with the License.
395
- You may obtain a copy of the License at
396
-
397
- https://www.apache.org/licenses/LICENSE-2.0
398
-
399
- Unless required by applicable law or agreed to in writing, software
400
- distributed under the License is distributed on an "AS IS" BASIS,
401
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
402
- See the License for the specific language governing permissions and
403
- limitations under the License.
362
+ * @license
363
+ * Copyright 2022 Google LLC
364
+ * SPDX-License-Identifier: Apache-2.0
404
365
  */
405
366
 
406
367
  declare class StringifyExtension {
@@ -412,19 +373,9 @@ declare class StringifyExtension {
412
373
  }
413
374
 
414
375
  /**
415
- Copyright 2022 Google LLC
416
-
417
- Licensed under the Apache License, Version 2.0 (the "License");
418
- you may not use this file except in compliance with the License.
419
- You may obtain a copy of the License at
420
-
421
- https://www.apache.org/licenses/LICENSE-2.0
422
-
423
- Unless required by applicable law or agreed to in writing, software
424
- distributed under the License is distributed on an "AS IS" BASIS,
425
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
426
- See the License for the specific language governing permissions and
427
- limitations under the License.
376
+ * @license
377
+ * Copyright 2022 Google LLC
378
+ * SPDX-License-Identifier: Apache-2.0
428
379
  */
429
380
 
430
381
  /**
@@ -440,19 +391,9 @@ declare class JSONStringifyExtension extends StringifyExtension {
440
391
  }
441
392
 
442
393
  /**
443
- Copyright 2022 Google LLC
444
-
445
- Licensed under the Apache License, Version 2.0 (the "License");
446
- you may not use this file except in compliance with the License.
447
- You may obtain a copy of the License at
448
-
449
- https://www.apache.org/licenses/LICENSE-2.0
450
-
451
- Unless required by applicable law or agreed to in writing, software
452
- distributed under the License is distributed on an "AS IS" BASIS,
453
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
454
- See the License for the specific language governing permissions and
455
- limitations under the License.
394
+ * @license
395
+ * Copyright 2022 Google LLC
396
+ * SPDX-License-Identifier: Apache-2.0
456
397
  */
457
398
 
458
399
  interface StringifyOptions {
@@ -487,19 +428,9 @@ declare function parseSourceMap(text: string): SourceMap | undefined;
487
428
  declare function stripSourceMap(text: string): string;
488
429
 
489
430
  /**
490
- Copyright 2022 Google LLC
491
-
492
- Licensed under the Apache License, Version 2.0 (the "License");
493
- you may not use this file except in compliance with the License.
494
- You may obtain a copy of the License at
495
-
496
- https://www.apache.org/licenses/LICENSE-2.0
497
-
498
- Unless required by applicable law or agreed to in writing, software
499
- distributed under the License is distributed on an "AS IS" BASIS,
500
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
501
- See the License for the specific language governing permissions and
502
- limitations under the License.
431
+ * @license
432
+ * Copyright 2022 Google LLC
433
+ * SPDX-License-Identifier: Apache-2.0
503
434
  */
504
435
 
505
436
  declare class RunnerExtension {
@@ -511,19 +442,9 @@ declare class RunnerExtension {
511
442
  }
512
443
 
513
444
  /**
514
- Copyright 2022 Google LLC
515
-
516
- Licensed under the Apache License, Version 2.0 (the "License");
517
- you may not use this file except in compliance with the License.
518
- You may obtain a copy of the License at
519
-
520
- https://www.apache.org/licenses/LICENSE-2.0
521
-
522
- Unless required by applicable law or agreed to in writing, software
523
- distributed under the License is distributed on an "AS IS" BASIS,
524
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
525
- See the License for the specific language governing permissions and
526
- limitations under the License.
445
+ * @license
446
+ * Copyright 2022 Google LLC
447
+ * SPDX-License-Identifier: Apache-2.0
527
448
  */
528
449
 
529
450
  declare class Runner {
@@ -549,19 +470,9 @@ declare function createRunner(extension: RunnerExtension): Promise<Runner>;
549
470
  declare function createRunner(flow: UserFlow, extension: RunnerExtension): Promise<Runner>;
550
471
 
551
472
  /**
552
- Copyright 2022 Google LLC
553
-
554
- Licensed under the Apache License, Version 2.0 (the "License");
555
- you may not use this file except in compliance with the License.
556
- You may obtain a copy of the License at
557
-
558
- https://www.apache.org/licenses/LICENSE-2.0
559
-
560
- Unless required by applicable law or agreed to in writing, software
561
- distributed under the License is distributed on an "AS IS" BASIS,
562
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
563
- See the License for the specific language governing permissions and
564
- limitations under the License.
473
+ * @license
474
+ * Copyright 2022 Google LLC
475
+ * SPDX-License-Identifier: Apache-2.0
565
476
  */
566
477
 
567
478
  declare class PuppeteerRunnerExtension extends RunnerExtension {
@@ -579,19 +490,9 @@ declare class PuppeteerRunnerOwningBrowserExtension extends PuppeteerRunnerExten
579
490
  }
580
491
 
581
492
  /**
582
- Copyright 2022 Google LLC
583
-
584
- Licensed under the Apache License, Version 2.0 (the "License");
585
- you may not use this file except in compliance with the License.
586
- You may obtain a copy of the License at
587
-
588
- https://www.apache.org/licenses/LICENSE-2.0
589
-
590
- Unless required by applicable law or agreed to in writing, software
591
- distributed under the License is distributed on an "AS IS" BASIS,
592
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
593
- See the License for the specific language governing permissions and
594
- limitations under the License.
493
+ * @license
494
+ * Copyright 2022 Google LLC
495
+ * SPDX-License-Identifier: Apache-2.0
595
496
  */
596
497
 
597
498
  type TargetBrowser = 'chrome' | 'firefox';
@@ -604,19 +505,9 @@ declare class PuppeteerStringifyExtension extends StringifyExtension {
604
505
  }
605
506
 
606
507
  /**
607
- Copyright 2022 Google LLC
608
-
609
- Licensed under the Apache License, Version 2.0 (the "License");
610
- you may not use this file except in compliance with the License.
611
- You may obtain a copy of the License at
612
-
613
- https://www.apache.org/licenses/LICENSE-2.0
614
-
615
- Unless required by applicable law or agreed to in writing, software
616
- distributed under the License is distributed on an "AS IS" BASIS,
617
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
618
- See the License for the specific language governing permissions and
619
- limitations under the License.
508
+ * @license
509
+ * Copyright 2022 Google LLC
510
+ * SPDX-License-Identifier: Apache-2.0
620
511
  */
621
512
 
622
513
  /**
@@ -629,19 +520,9 @@ declare class PuppeteerReplayStringifyExtension extends StringifyExtension {
629
520
  }
630
521
 
631
522
  /**
632
- Copyright 2022 Google LLC
633
-
634
- Licensed under the Apache License, Version 2.0 (the "License");
635
- you may not use this file except in compliance with the License.
636
- You may obtain a copy of the License at
637
-
638
- https://www.apache.org/licenses/LICENSE-2.0
639
-
640
- Unless required by applicable law or agreed to in writing, software
641
- distributed under the License is distributed on an "AS IS" BASIS,
642
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
643
- See the License for the specific language governing permissions and
644
- limitations under the License.
523
+ * @license
524
+ * Copyright 2022 Google LLC
525
+ * SPDX-License-Identifier: Apache-2.0
645
526
  */
646
527
 
647
528
  declare class LighthouseStringifyExtension extends PuppeteerStringifyExtension {
@@ -661,19 +542,9 @@ declare class LighthouseRunnerExtension extends PuppeteerRunnerExtension {
661
542
  }
662
543
 
663
544
  /**
664
- Copyright 2022 Google LLC
665
-
666
- Licensed under the Apache License, Version 2.0 (the "License");
667
- you may not use this file except in compliance with the License.
668
- You may obtain a copy of the License at
669
-
670
- https://www.apache.org/licenses/LICENSE-2.0
671
-
672
- Unless required by applicable law or agreed to in writing, software
673
- distributed under the License is distributed on an "AS IS" BASIS,
674
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
675
- See the License for the specific language governing permissions and
676
- limitations under the License.
545
+ * @license
546
+ * Copyright 2022 Google LLC
547
+ * SPDX-License-Identifier: Apache-2.0
677
548
  */
678
549
  /**
679
550
  * Copyright (c) 2020 The Chromium Authors. All rights reserved.
@@ -683,4 +554,5 @@ declare class LighthouseRunnerExtension extends PuppeteerRunnerExtension {
683
554
  declare function formatJSONAsJS(json: unknown, indent: string): string;
684
555
  declare const formatAsJSLiteral: (content: string) => string;
685
556
 
686
- export { type AssertedEvent, AssertedEventType, type AssertionStep, type BaseStep, type ChangeStep, type ClickAttributes, type ClickStep, type CloseStep, type CustomStep, type CustomStepParams, type DoubleClickStep, type EmulateNetworkConditionsStep, type FrameSelector, type HoverStep, JSONStringifyExtension, type Key, type KeyDownStep, type KeyUpStep, LighthouseRunnerExtension, LighthouseStringifyExtension, type LineWriter, type NavigateStep, type NavigationEvent, type Pattern, type PointerButtonType, type PointerDeviceType, PuppeteerReplayStringifyExtension, PuppeteerRunnerExtension, PuppeteerRunnerOwningBrowserExtension, PuppeteerStringifyExtension, Runner, RunnerExtension, Schema, type ScrollElementStep, type ScrollPageStep, type ScrollStep, type Selector, SelectorType, type SetViewportStep, type SourceMap, type Step, StepType, type StepWithFrame, type StepWithSelectors, type StepWithTarget, StringifyExtension, type StringifyOptions, type Target, type UserFlow, type UserStep, type WaitForElementStep, type WaitForExpressionStep, assertAllStepTypesAreHandled, createRunner, formatAsJSLiteral, formatJSONAsJS, getSelectorType, maxTimeout, minTimeout, mouseButtonMap, parse, parseSourceMap, parseStep, pointerDeviceTypes, selectorToPElementSelector, stringify, stringifyStep, stripSourceMap, typeableInputTypes, validTimeout };
557
+ export { AssertedEventType, JSONStringifyExtension, LighthouseRunnerExtension, LighthouseStringifyExtension, PuppeteerReplayStringifyExtension, PuppeteerRunnerExtension, PuppeteerRunnerOwningBrowserExtension, PuppeteerStringifyExtension, Runner, RunnerExtension, Schema, SelectorType, StepType, StringifyExtension, assertAllStepTypesAreHandled, createRunner, formatAsJSLiteral, formatJSONAsJS, getSelectorType, maxTimeout, minTimeout, mouseButtonMap, parse, parseSourceMap, parseStep, pointerDeviceTypes, selectorToPElementSelector, stringify, stringifyStep, stripSourceMap, typeableInputTypes, validTimeout };
558
+ export type { AssertedEvent, AssertionStep, BaseStep, ChangeStep, ClickAttributes, ClickStep, CloseStep, CustomStep, CustomStepParams, DoubleClickStep, EmulateNetworkConditionsStep, FrameSelector, HoverStep, Key, KeyDownStep, KeyUpStep, LineWriter, NavigateStep, NavigationEvent, Pattern, PointerButtonType, PointerDeviceType, ScrollElementStep, ScrollPageStep, ScrollStep, Selector, SetViewportStep, SourceMap, Step, StepWithFrame, StepWithSelectors, StepWithTarget, StringifyOptions, Target, UserFlow, UserStep, WaitForElementStep, WaitForExpressionStep };