chrome-devtools-frontend 1.0.952865 → 1.0.953165
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/front_end/.eslintrc.js +1 -0
- package/front_end/core/host/UserMetrics.ts +515 -481
- package/front_end/core/sdk/ChildTargetManager.ts +1 -0
- package/front_end/third_party/lighthouse/lighthouse-dt-bundle.js +188 -185
- package/front_end/third_party/lighthouse/locales/en-US.json +1 -1
- package/front_end/third_party/lighthouse/locales/en-XL.json +1 -1
- package/front_end/third_party/lighthouse/report/bundle.js +3 -3
- package/front_end/third_party/lighthouse/report-assets/report-generator.js +1 -1
- package/front_end/ui/components/docs/component_docs.ts +4 -4
- package/front_end/ui/components/docs/component_docs_styles.css +51 -0
- package/package.json +1 -1
- package/scripts/check_experiments.js +3 -6
- package/scripts/component_server/server.js +4 -12
- package/scripts/eslint_rules/lib/check_enumerated_histograms.js +32 -0
- package/scripts/eslint_rules/tests/check_enumerated_histograms_test.js +32 -0
|
@@ -143,6 +143,7 @@ export class ChildTargetManager extends SDKModel<EventTypes> implements Protocol
|
|
|
143
143
|
|
|
144
144
|
const target = this.#targetManager.createTarget(
|
|
145
145
|
targetInfo.targetId, targetName, type, this.#parentTarget, sessionId, undefined, undefined, targetInfo);
|
|
146
|
+
target.setInspectedURL(this.#parentTarget.inspectedURL());
|
|
146
147
|
this.#childTargetsBySessionId.set(sessionId, target);
|
|
147
148
|
this.#childTargetsById.set(target.id(), target);
|
|
148
149
|
|