chrome-devtools-frontend 1.0.1657855 → 1.0.1661063
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/.agents/skills/evaluate-ai-css-completion/SKILL.md +133 -0
- package/.agents/skills/evaluate-ai-css-completion/scripts/evaluate.js +76 -0
- package/.agents/skills/migrate-chromium-test/SKILL.md +15 -70
- package/.agents/skills/ui-eng-vision-orchestrator/SKILL.md +37 -18
- package/.agents/skills/version-control/SKILL.md +8 -1
- package/AUTHORS +1 -0
- package/SECURITY.md +3 -0
- package/docs/get_the_code.md +6 -0
- package/eslint.config.mjs +7 -0
- package/extension-api/ExtensionAPI.d.ts +88 -0
- package/front_end/Tests.js +6 -6
- package/front_end/core/common/Gzip.ts +12 -5
- package/front_end/core/host/AidaClient.ts +35 -9
- package/front_end/core/host/GdpClient.ts +10 -7
- package/front_end/core/host/InspectorFrontendHost.ts +1 -0
- package/front_end/core/host/InspectorFrontendHostStub.ts +2 -0
- package/front_end/core/platform/StringUtilities.ts +55 -4
- package/front_end/core/sdk/AccessibilityModel.snapshot.txt +17 -0
- package/front_end/core/sdk/AccessibilityModel.ts +132 -2
- package/front_end/core/sdk/CPUThrottlingManager.ts +10 -5
- package/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +2 -5
- package/front_end/core/sdk/ConsoleModel.ts +5 -5
- package/front_end/core/sdk/DOMDebuggerModel.ts +7 -1
- package/front_end/core/sdk/DOMModel.ts +33 -18
- package/front_end/core/sdk/DebuggerModel.ts +4 -4
- package/front_end/core/sdk/EventBreakpointsModel.ts +2 -0
- package/front_end/core/sdk/FrameManager.ts +1 -0
- package/front_end/core/sdk/IsolateManager.ts +1 -0
- package/front_end/core/sdk/NetworkManager.ts +59 -11
- package/front_end/core/sdk/NetworkRequest.ts +38 -1
- package/front_end/core/sdk/OverlayModel.ts +45 -6
- package/front_end/core/sdk/PageResourceLoader.ts +2 -0
- package/front_end/core/sdk/ResourceTreeModel.ts +6 -7
- package/front_end/core/sdk/ScreenCaptureModel.ts +2 -2
- package/front_end/core/sdk/ServerTiming.ts +17 -13
- package/front_end/core/sdk/ServiceWorkerCacheModel.ts +4 -2
- package/front_end/core/sdk/ServiceWorkerManager.ts +19 -5
- package/front_end/core/sdk/SourceMap.ts +5 -5
- package/front_end/core/sdk/SourceMapManager.ts +3 -2
- package/front_end/core/sdk/TargetManager.ts +14 -1
- package/front_end/core/sdk/TraceObject.ts +4 -2
- package/front_end/core/sdk/sdk-meta.ts +170 -0
- package/front_end/design_system_tokens.css +0 -5
- package/front_end/entrypoints/formatter_worker/FormattedContentBuilder.ts +5 -2
- package/front_end/entrypoints/formatter_worker/HTMLFormatter.ts +26 -4
- package/front_end/entrypoints/formatter_worker/JavaScriptFormatter.ts +8 -3
- package/front_end/entrypoints/inspector_main/InspectorMain.ts +4 -4
- package/front_end/entrypoints/inspector_main/OutermostTargetSelector.ts +2 -2
- package/front_end/entrypoints/inspector_main/RenderingOptions.ts +36 -37
- package/front_end/entrypoints/inspector_main/inspector_main-meta.ts +15 -33
- package/front_end/entrypoints/js_app/js_app.ts +6 -5
- package/front_end/entrypoints/main/GlobalAiButton.ts +4 -4
- package/front_end/entrypoints/main/MainImpl.ts +20 -22
- package/front_end/entrypoints/main/main-meta.ts +42 -42
- package/front_end/entrypoints/node_app/node_app.ts +3 -2
- package/front_end/entrypoints/worker_app/WorkerMain.ts +1 -1
- package/front_end/foundation/Universe.ts +44 -1
- package/front_end/generated/InspectorBackendCommands.ts +2 -2
- package/front_end/generated/SupportedCSSProperties.js +19 -12
- package/front_end/generated/protocol.ts +3 -1
- package/front_end/models/ai_assistance/AiConversation.ts +19 -17
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +37 -14
- package/front_end/models/ai_assistance/AiUtils.ts +38 -42
- package/front_end/models/ai_assistance/agents/AiAgent.ts +5 -1
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +3 -2
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +2 -1
- package/front_end/models/ai_assistance/agents/StorageAgent.ts +7 -5
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +270 -286
- package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +20 -0
- package/front_end/models/ai_assistance/performance/AICallTree.ts +3 -1
- package/front_end/models/ai_assistance/tools/ListNetworkRequests.ts +3 -2
- package/front_end/models/autofill_manager/AutofillManager.ts +3 -1
- package/front_end/models/bindings/CompilerScriptMapping.ts +7 -7
- package/front_end/models/bindings/ContentProviderBasedProject.ts +4 -4
- package/front_end/models/bindings/DebuggerLanguagePlugins.ts +5 -5
- package/front_end/models/bindings/DefaultScriptMapping.ts +3 -3
- package/front_end/models/bindings/NetworkProject.ts +5 -10
- package/front_end/models/bindings/PresentationConsoleMessageHelper.ts +2 -1
- package/front_end/models/bindings/ResourceMapping.ts +3 -4
- package/front_end/models/bindings/ResourceScriptMapping.ts +2 -3
- package/front_end/models/bindings/ResourceUtils.ts +1 -1
- package/front_end/models/bindings/SASSSourceMapping.ts +11 -9
- package/front_end/models/bindings/StylesSourceMapping.ts +3 -3
- package/front_end/models/bindings/TempFile.ts +8 -3
- package/front_end/models/emulation/EmulatedDevices.ts +389 -8
- package/front_end/models/extensions/ExtensionAPI.ts +116 -52
- package/front_end/models/extensions/LanguageExtensionEndpoint.ts +13 -12
- package/front_end/models/formatter/ScriptFormatter.ts +8 -11
- package/front_end/models/issues_manager/BounceTrackingIssue.ts +1 -1
- package/front_end/models/issues_manager/ClientHintIssue.ts +1 -1
- package/front_end/models/issues_manager/ConnectionAllowlistIssue.ts +1 -1
- package/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts +7 -7
- package/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts +2 -2
- package/front_end/models/issues_manager/CookieIssue.ts +27 -16
- package/front_end/models/issues_manager/CorsIssue.ts +3 -3
- package/front_end/models/issues_manager/CrossOriginEmbedderPolicyIssue.ts +2 -2
- package/front_end/models/issues_manager/DeprecationIssue.ts +3 -3
- package/front_end/models/issues_manager/EmailVerificationRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/FederatedAuthUserInfoRequestIssue.ts +1 -1
- package/front_end/models/issues_manager/GenericIssue.ts +7 -7
- package/front_end/models/issues_manager/HeavyAdIssue.ts +3 -3
- package/front_end/models/issues_manager/Issue.ts +11 -12
- package/front_end/models/issues_manager/IssueAggregator.ts +0 -9
- package/front_end/models/issues_manager/IssueResolver.ts +2 -2
- package/front_end/models/issues_manager/IssuesManager.ts +136 -137
- package/front_end/models/issues_manager/MixedContentIssue.ts +1 -1
- package/front_end/models/issues_manager/PartitioningBlobURLIssue.ts +3 -3
- package/front_end/models/issues_manager/QuirksModeIssue.ts +1 -1
- package/front_end/models/issues_manager/SRIMessageSignatureIssue.ts +2 -2
- package/front_end/models/issues_manager/SelectivePermissionsInterventionIssue.ts +2 -2
- package/front_end/models/issues_manager/SharedArrayBufferIssue.ts +2 -2
- package/front_end/models/issues_manager/SharedDictionaryIssue.ts +1 -1
- package/front_end/models/issues_manager/UnencodedDigestIssue.ts +3 -3
- package/front_end/models/issues_manager/issues_manager.ts +0 -2
- package/front_end/models/javascript_metadata/NativeFunctions.js +5 -1
- package/front_end/models/persistence/AutomaticFileSystemWorkspaceBinding.ts +5 -0
- package/front_end/models/source_map_scopes/FunctionCodeResolver.ts +13 -10
- package/front_end/models/stack_trace/StackTraceModel.ts +3 -3
- package/front_end/models/text_utils/ContentData.ts +27 -0
- package/front_end/models/trace/helpers/SamplesIntegrator.ts +21 -5
- package/front_end/models/trace_source_maps_resolver/SourceMapsResolver.ts +29 -14
- package/front_end/models/web_mcp/WebMCPModel.ts +24 -6
- package/front_end/models/workspace/IgnoreListManager.ts +6 -6
- package/front_end/models/workspace/UISourceCode.ts +3 -3
- package/front_end/models/workspace/WorkspaceImpl.ts +10 -1
- package/front_end/models/workspace_diff/WorkspaceDiff.ts +10 -4
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +25 -22
- package/front_end/panels/ai_assistance/ExportConversation.ts +3 -4
- package/front_end/panels/ai_assistance/ai_assistance-meta.ts +3 -3
- package/front_end/panels/ai_assistance/components/ChatInput.ts +2 -2
- package/front_end/panels/ai_assistance/components/ChatMessage.ts +9 -1
- package/front_end/panels/ai_assistance/components/DisabledWidget.ts +2 -2
- package/front_end/panels/animation/AnimationTimeline.ts +17 -19
- package/front_end/panels/animation/AnimationUI.ts +5 -5
- package/front_end/panels/animation/animation-meta.ts +2 -2
- package/front_end/panels/application/ApplicationPanelSidebar.ts +4 -3
- package/front_end/panels/application/DeviceBoundSessionsView.ts +2 -6
- package/front_end/panels/application/FrameDetailsView.ts +1 -1
- package/front_end/panels/application/IndexedDBViews.ts +220 -266
- package/front_end/panels/application/OpenedWindowDetailsView.ts +1 -1
- package/front_end/panels/application/ResourcesPanel.ts +9 -2
- package/front_end/panels/application/ServiceWorkersView.ts +252 -211
- package/front_end/panels/application/StorageView.ts +97 -33
- package/front_end/panels/application/WebMCPView.ts +53 -44
- package/front_end/panels/application/components/AdsView.ts +201 -30
- package/front_end/panels/application/components/adsView.css +25 -0
- package/front_end/panels/application/indexedDBViews.css +38 -9
- package/front_end/panels/application/preloading/components/RuleSetDetailsView.ts +2 -2
- package/front_end/panels/application/preloading/helper/PreloadingForward.ts +2 -1
- package/front_end/panels/application/storageView.css +26 -9
- package/front_end/panels/browser_debugger/XHRBreakpointsSidebarPane.ts +5 -1
- package/front_end/panels/browser_debugger/browser_debugger-meta.ts +8 -6
- package/front_end/panels/common/DOMLinkifier.ts +1 -1
- package/front_end/panels/common/ExtensionServer.ts +119 -14
- package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
- package/front_end/panels/console/ConsolePinPane.ts +2 -2
- package/front_end/panels/console/ConsolePrompt.ts +2 -2
- package/front_end/panels/console/ConsoleView.ts +3 -2
- package/front_end/panels/console/PromptBuilder.ts +2 -1
- package/front_end/panels/console/SymbolizedErrorWidget.ts +2 -1
- package/front_end/panels/console_counters/WarningErrorCounter.ts +2 -2
- package/front_end/panels/coverage/CoverageListView.ts +28 -28
- package/front_end/panels/coverage/CoverageModel.ts +2 -1
- package/front_end/panels/coverage/CoverageView.ts +22 -22
- package/front_end/panels/coverage/coverage-meta.ts +5 -5
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +36 -36
- package/front_end/panels/css_overview/CSSOverviewProcessingView.ts +1 -1
- package/front_end/panels/css_overview/CSSOverviewSidebarPanel.ts +2 -2
- package/front_end/panels/css_overview/CSSOverviewStartView.ts +6 -6
- package/front_end/panels/css_overview/CSSOverviewUnusedDeclarations.ts +6 -6
- package/front_end/panels/css_overview/css_overview-meta.ts +2 -2
- package/front_end/panels/developer_resources/DeveloperResourcesListView.ts +1 -1
- package/front_end/panels/elements/AccessibilityTreeUtils.ts +8 -102
- package/front_end/panels/elements/AccessibilityTreeView.ts +163 -70
- package/front_end/panels/elements/ElementsPanel.ts +17 -11
- package/front_end/panels/elements/ElementsTreeElement.ts +4 -1
- package/front_end/panels/elements/ElementsTreeOutline.ts +4 -4
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/MetricsSidebarPane.ts +100 -34
- package/front_end/panels/elements/StylePropertiesSection.ts +2 -2
- package/front_end/panels/elements/StylePropertyTreeElement.ts +8 -2
- package/front_end/panels/elements/StylesSidebarPane.ts +1 -1
- package/front_end/panels/elements/components/AccessibilityTreeNode.ts +7 -18
- package/front_end/panels/elements/components/ElementsBreadcrumbs.ts +2 -2
- package/front_end/panels/elements/components/QueryContainer.ts +1 -1
- package/front_end/panels/emulation/DeviceModeView.ts +52 -70
- package/front_end/panels/issues/AffectedDirectivesView.ts +1 -1
- package/front_end/panels/issues/AffectedResourcesView.ts +2 -1
- package/front_end/panels/issues/IssueView.ts +0 -2
- package/front_end/panels/issues/IssuesPane.ts +1 -8
- package/front_end/panels/js_timeline/js_timeline-meta.ts +3 -2
- package/front_end/panels/layer_viewer/LayerViewHost.ts +1 -1
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorController.ts +3 -3
- package/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts +5 -5
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryHighlightChipList.ts +4 -4
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryInspector.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryNavigator.ts +6 -6
- package/front_end/panels/linear_memory_inspector/components/LinearMemoryValueInterpreter.ts +3 -3
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplay.ts +8 -9
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterDisplayUtils.ts +2 -2
- package/front_end/panels/linear_memory_inspector/components/ValueInterpreterSettings.ts +1 -1
- package/front_end/panels/linear_memory_inspector/linear_memory_inspector-meta.ts +2 -2
- package/front_end/panels/network/NetworkDataGridNode.ts +124 -36
- package/front_end/panels/network/NetworkLogView.ts +9 -1
- package/front_end/panels/network/NetworkLogViewColumns.ts +18 -0
- package/front_end/panels/network/NetworkPanel.ts +2 -1
- package/front_end/panels/network/RequestPayloadView.ts +68 -20
- package/front_end/panels/network/RequestPreviewView.ts +7 -1
- package/front_end/panels/network/RequestTimingView.ts +95 -127
- package/front_end/panels/network/components/ResponseHeaderSection.ts +1 -1
- package/front_end/panels/network/forward/UIFilter.ts +1 -0
- package/front_end/panels/network/requestPayloadView.css +10 -0
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +12 -12
- package/front_end/panels/performance_monitor/performance_monitor-meta.ts +7 -7
- package/front_end/panels/profiler/HeapDetachedElementsView.ts +2 -2
- package/front_end/panels/profiler/HeapProfileView.ts +563 -51
- package/front_end/panels/profiler/HeapSnapshotView.ts +14 -9
- package/front_end/panels/profiler/ProfilesPanel.ts +13 -7
- package/front_end/panels/profiler/WritableProfileHeader.ts +152 -0
- package/front_end/panels/profiler/profiler.ts +2 -2
- package/front_end/panels/recorder/{components/ControlButton.ts → ControlButton.ts} +9 -10
- package/front_end/panels/recorder/{components/CreateRecordingView.ts → CreateRecordingView.ts} +59 -58
- package/front_end/panels/recorder/ExtensionView.ts +123 -0
- package/front_end/panels/recorder/RecorderController.ts +102 -92
- package/front_end/panels/recorder/{components/RecordingListView.ts → RecordingListView.ts} +22 -23
- package/front_end/panels/recorder/{components/RecordingView.ts → RecordingView.ts} +99 -96
- package/front_end/panels/recorder/{components/ReplaySection.ts → ReplaySection.ts} +20 -20
- package/front_end/panels/recorder/{components/SelectorPicker.ts → SelectorPicker.ts} +13 -13
- package/front_end/panels/recorder/{components/StepEditor.ts → StepEditor.ts} +367 -336
- package/front_end/panels/recorder/{components/StepView.ts → StepView.ts} +48 -49
- package/front_end/panels/recorder/{components/TimelineSection.ts → TimelineSection.ts} +2 -2
- package/front_end/panels/recorder/models/RecorderSettings.ts +2 -2
- package/front_end/panels/recorder/recorder-meta.ts +7 -7
- package/front_end/panels/recorder/recorder.ts +23 -1
- package/front_end/panels/recorder/{components/recordingView.css → recordingView.css} +1 -1
- package/front_end/panels/recorder/util/util.ts +113 -0
- package/front_end/panels/screencast/ScreencastApp.ts +1 -1
- package/front_end/panels/screencast/ScreencastView.ts +12 -12
- package/front_end/panels/search/SearchResultsPane.ts +4 -4
- package/front_end/panels/search/SearchView.ts +20 -20
- package/front_end/panels/security/SecurityModel.ts +7 -7
- package/front_end/panels/security/SecurityPanel.ts +99 -107
- package/front_end/panels/security/SecurityPanelSidebar.ts +7 -7
- package/front_end/panels/security/security-meta.ts +2 -2
- package/front_end/panels/sensors/LocationsSettingsTab.ts +19 -19
- package/front_end/panels/sensors/SensorsView.ts +27 -27
- package/front_end/panels/sensors/sensors-meta.ts +13 -167
- package/front_end/panels/settings/AISettingsTab.ts +98 -56
- package/front_end/panels/settings/EditFileSystemView.ts +2 -2
- package/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts +20 -20
- package/front_end/panels/settings/KeybindsSettingsTab.ts +20 -21
- package/front_end/panels/settings/SettingsScreen.ts +11 -11
- package/front_end/panels/settings/WorkspaceSettingsTab.ts +5 -5
- package/front_end/panels/settings/components/SyncSection.ts +12 -12
- package/front_end/panels/settings/emulation/DevicesSettingsTab.ts +13 -13
- package/front_end/panels/settings/emulation/components/UserAgentClientHintsForm.ts +31 -31
- package/front_end/panels/settings/emulation/emulation-meta.ts +1 -1
- package/front_end/panels/settings/settings-meta.ts +14 -14
- package/front_end/panels/sources/InplaceFormatterEditorAction.ts +2 -2
- package/front_end/panels/sources/NavigatorView.ts +7 -6
- package/front_end/panels/sources/ScopeChainSidebarPane.ts +83 -37
- package/front_end/panels/sources/SourcesNavigator.ts +22 -21
- package/front_end/panels/sources/SourcesView.ts +10 -1
- package/front_end/panels/sources/TabbedEditorContainer.ts +1 -1
- package/front_end/panels/sources/scopeChainSidebarPane.css +12 -4
- package/front_end/panels/sources/sources-meta.ts +4 -4
- package/front_end/panels/timeline/CompatibilityTracksAppender.ts +5 -2
- package/front_end/panels/timeline/IsolateSelector.ts +10 -8
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +2 -1
- package/front_end/panels/timeline/TimelineFlameChartNetworkDataProvider.ts +2 -1
- package/front_end/panels/timeline/TimelineFlameChartView.ts +1 -1
- package/front_end/panels/timeline/TimelinePanel.ts +20 -8
- package/front_end/panels/timeline/TimelineUIUtils.ts +149 -131
- package/front_end/panels/timeline/components/NetworkRequestDetails.ts +4 -2
- package/front_end/panels/timeline/components/NetworkRequestTooltip.ts +4 -2
- package/front_end/panels/timeline/components/insights/ImageRef.ts +2 -1
- package/front_end/panels/timeline/timeline-meta.ts +3 -2
- package/front_end/panels/utils/utils.ts +7 -3
- package/front_end/panels/web_audio/WebAudioView.ts +17 -18
- package/front_end/panels/web_audio/web_audio-meta.ts +3 -3
- package/front_end/panels/whats_new/ReleaseNoteView.ts +1 -1
- package/front_end/panels/whats_new/whats_new-meta.ts +11 -11
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/lit/lib/async-directive.d.ts +2 -1
- package/front_end/third_party/lit/lib/async-directive.js +1 -1
- package/front_end/third_party/lit/lib/async-directive.js.map +1 -1
- package/front_end/third_party/lit/lib/decorators.d.ts +2 -1
- package/front_end/third_party/lit/lib/decorators.js.map +1 -1
- package/front_end/third_party/lit/lib/directive.d.ts +2 -1
- package/front_end/third_party/lit/lib/directive.js.map +1 -1
- package/front_end/third_party/lit/lib/directives.d.ts +2 -1
- package/front_end/third_party/lit/lib/directives.js +8 -8
- package/front_end/third_party/lit/lib/directives.js.map +1 -1
- package/front_end/third_party/lit/lib/lit.d.ts +2 -1
- package/front_end/third_party/lit/lib/lit.js +1 -1
- package/front_end/third_party/lit/lib/lit.js.map +1 -1
- package/front_end/third_party/lit/lib/static-html.d.ts +2 -1
- package/front_end/third_party/lit/lib/static-html.js +1 -1
- package/front_end/third_party/lit/lib/static-html.js.map +1 -1
- package/front_end/third_party/lit/package.json +2 -2
- package/front_end/third_party/lit/rebuild.sh +1 -1
- package/front_end/third_party/lit/src/async-directive.ts +5 -0
- package/front_end/ui/components/dialogs/Dialog.ts +1 -1
- package/front_end/ui/components/dialogs/ShortcutDialog.ts +1 -1
- package/front_end/ui/components/diff_view/DiffView.ts +2 -2
- package/front_end/ui/components/issue_counter/IssueCounter.ts +3 -3
- package/front_end/ui/components/issue_counter/IssueLinkIcon.ts +5 -5
- package/front_end/ui/components/lists/List.ts +2 -2
- package/front_end/ui/components/panel_feedback/PreviewToggle.ts +1 -1
- package/front_end/ui/components/request_link_icon/RequestLinkIcon.ts +5 -5
- package/front_end/ui/components/settings/SettingCheckbox.ts +1 -1
- package/front_end/ui/components/snackbars/Snackbar.ts +1 -1
- package/front_end/ui/components/survey_link/SurveyLink.ts +3 -3
- package/front_end/ui/components/text_editor/config.ts +2 -2
- package/front_end/ui/components/tree_outline/TreeOutline.ts +34 -1
- package/front_end/ui/legacy/ReportView.ts +5 -0
- package/front_end/ui/legacy/Treeoutline.ts +6 -0
- package/front_end/ui/legacy/View.ts +1 -1
- package/front_end/ui/legacy/Widget.ts +14 -15
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +2 -0
- package/front_end/ui/legacy/components/data_grid/DataGridElement.ts +8 -3
- package/front_end/ui/legacy/components/data_grid/data_grid.ts +1 -0
- package/front_end/ui/legacy/components/object_ui/ObjectPopoverHelper.ts +1 -1
- package/front_end/ui/legacy/components/object_ui/ObjectPropertiesSection.ts +106 -38
- package/front_end/ui/legacy/components/source_frame/ResourceSourceFrame.ts +7 -1
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +2 -1
- package/front_end/ui/legacy/components/utils/ImagePreview.ts +4 -2
- package/front_end/ui/legacy/components/utils/JSPresentationUtils.ts +10 -1
- package/front_end/ui/legacy/inspectorCommon.css +5 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +3 -0
- package/mcp/mcp.ts +2 -0
- package/package.json +4 -4
- package/front_end/models/issues_manager/AttributionReportingIssue.ts +0 -247
- package/front_end/models/issues_manager/descriptions/arInsecureContext.md +0 -7
- package/front_end/models/issues_manager/descriptions/arInvalidInfoHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterOsSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterOsTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arInvalidRegisterTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNavigationRegistrationUniqueScopeAlreadySet.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNavigationRegistrationWithoutTransientUserActivation.md +0 -6
- package/front_end/models/issues_manager/descriptions/arNoRegisterOsSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoRegisterOsTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoRegisterSourceHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoRegisterTriggerHeader.md +0 -5
- package/front_end/models/issues_manager/descriptions/arNoWebOrOsSupport.md +0 -4
- package/front_end/models/issues_manager/descriptions/arOsSourceIgnored.md +0 -18
- package/front_end/models/issues_manager/descriptions/arOsTriggerIgnored.md +0 -19
- package/front_end/models/issues_manager/descriptions/arPermissionPolicyDisabled.md +0 -8
- package/front_end/models/issues_manager/descriptions/arSourceAndTriggerHeaders.md +0 -9
- package/front_end/models/issues_manager/descriptions/arSourceIgnored.md +0 -13
- package/front_end/models/issues_manager/descriptions/arTriggerIgnored.md +0 -12
- package/front_end/models/issues_manager/descriptions/arUntrustworthyReportingOrigin.md +0 -10
- package/front_end/models/issues_manager/descriptions/arWebAndOsHeaders.md +0 -11
- package/front_end/panels/issues/AttributionReportingIssueDetailsView.ts +0 -182
- package/front_end/panels/profiler/ProfileView.ts +0 -611
- package/front_end/panels/recorder/components/ExtensionView.ts +0 -132
- package/front_end/panels/recorder/components/components.ts +0 -25
- package/front_end/panels/recorder/components/util.ts +0 -116
- /package/front_end/panels/recorder/{components/controlButton.css → controlButton.css} +0 -0
- /package/front_end/panels/recorder/{components/createRecordingView.css → createRecordingView.css} +0 -0
- /package/front_end/panels/recorder/{components/extensionView.css → extensionView.css} +0 -0
- /package/front_end/panels/recorder/{components/recordingListView.css → recordingListView.css} +0 -0
- /package/front_end/panels/recorder/{components/replaySection.css → replaySection.css} +0 -0
- /package/front_end/panels/recorder/{components/selectorPicker.css → selectorPicker.css} +0 -0
- /package/front_end/panels/recorder/{components/startView.css → startView.css} +0 -0
- /package/front_end/panels/recorder/{components/stepEditor.css → stepEditor.css} +0 -0
- /package/front_end/panels/recorder/{components/stepView.css → stepView.css} +0 -0
- /package/front_end/panels/recorder/{components/timelineSection.css → timelineSection.css} +0 -0
package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt
CHANGED
|
@@ -39,7 +39,7 @@ Content:
|
|
|
39
39
|
19;r-9671;Timer fired;32.5;0;;35;;
|
|
40
40
|
20;r-15021;Evaluate script;11.6;1.3;1;36;;
|
|
41
41
|
21;r-18573;Evaluate script;23.1;11.6;2;37;;
|
|
42
|
-
22;r-25966;Evaluate script;12.7;2.
|
|
42
|
+
22;r-25966;Evaluate script;12.7;2.9;3;38;;
|
|
43
43
|
23;r-27320;Evaluate script;14;1.5;4;39;;
|
|
44
44
|
24;r-29586;Evaluate script;27.1;5.9;5;40;;
|
|
45
45
|
25;r-34263;Event: load;13.9;0;;41;;
|
|
@@ -48,285 +48,269 @@ Content:
|
|
|
48
48
|
28;r-55192;Parse HTML;10.4;10.4;7;;;
|
|
49
49
|
29;r-72510;Evaluate script;12.8;12.8;8;;;
|
|
50
50
|
30;r-74576;Timer fired;23.3;0;;45;;
|
|
51
|
-
31;r-91873;Run microtasks;17.3;
|
|
52
|
-
32;r-94864;Run microtasks;10.2;
|
|
53
|
-
33;r-97270;Run microtasks;29.7;0.3;;
|
|
54
|
-
34;r-100788;Timer fired;24.7;2.5;;
|
|
55
|
-
35;r-9676;Function call;32.5;1.8;7;
|
|
51
|
+
31;r-91873;Run microtasks;17.3;17.3;;;;
|
|
52
|
+
32;r-94864;Run microtasks;10.2;10.2;;;;
|
|
53
|
+
33;r-97270;Run microtasks;29.7;0.3;;46;;
|
|
54
|
+
34;r-100788;Timer fired;24.7;2.5;;47;;
|
|
55
|
+
35;r-9676;Function call;32.5;1.8;7;48;58;31
|
|
56
56
|
36;p-49575-15428179-2834-374;(anonymous);10.4;10.4;1;;0;0
|
|
57
57
|
37;r-18574;Compile script;11.5;11.5;2;;;
|
|
58
|
-
38;p-49575-15428179-3407-1094;(anonymous);
|
|
58
|
+
38;p-49575-15428179-3407-1094;(anonymous);9.9;;3;49;0;0
|
|
59
59
|
39;p-49575-15428179-3505-1162;(anonymous);12.5;12.5;4;;0;0
|
|
60
|
-
40;p-49575-15428179-3719-1230;(anonymous);21.2;1.2;5;
|
|
61
|
-
41;r-34282;Run microtasks;13.8;0.2;;
|
|
62
|
-
42;r-39351;Function call;85.7;0.5;3;54
|
|
63
|
-
43;p-49575-15428179-5391-2767;(anonymous);14.9;;6;
|
|
64
|
-
44;r-49156;Run microtasks;20.1;
|
|
65
|
-
45;r-74582;Function call;23.3;0.4;3;
|
|
66
|
-
46;p-49575-15428179-
|
|
67
|
-
47;
|
|
68
|
-
48;p-49575-15428179-
|
|
69
|
-
49;
|
|
70
|
-
50;p-49575-15428179-
|
|
71
|
-
51;p-49575-15428179-
|
|
72
|
-
52;p-49575-15428179-
|
|
73
|
-
53;p-49575-15428179-
|
|
74
|
-
54;p-49575-15428179-
|
|
75
|
-
55;p-49575-15428179
|
|
76
|
-
56;p-49575-15428179-
|
|
77
|
-
57;p-49575-15428179-
|
|
78
|
-
58;p-49575-15428179-
|
|
79
|
-
59;p-49575-15428179-
|
|
80
|
-
60;p-49575-15428179
|
|
81
|
-
61;p-49575-15428179-
|
|
82
|
-
62;p-49575-15428179-
|
|
83
|
-
63;p-49575-15428179-
|
|
84
|
-
64;p-49575-15428179-
|
|
85
|
-
65;p-49575-15428179-
|
|
86
|
-
66;p-49575-15428179-
|
|
87
|
-
67;p-49575-15428179
|
|
88
|
-
68;p-49575-15428179-
|
|
89
|
-
69;p-49575-15428179-
|
|
90
|
-
70;p-49575-15428179-
|
|
91
|
-
71;p-49575-15428179-
|
|
92
|
-
72;p-49575-15428179
|
|
93
|
-
73;p-49575-15428179-
|
|
94
|
-
74;p-49575-15428179-
|
|
95
|
-
75;p-49575-15428179-
|
|
96
|
-
76;p-49575-15428179-
|
|
97
|
-
77;p-49575-15428179-
|
|
98
|
-
78;p-49575-15428179
|
|
99
|
-
79;p-49575-15428179-
|
|
100
|
-
80;p-49575-15428179-
|
|
101
|
-
81;p-49575-15428179-
|
|
102
|
-
82;p-49575-15428179
|
|
103
|
-
83;p-49575-15428179
|
|
104
|
-
84;p-49575-15428179-
|
|
105
|
-
85;p-49575-15428179--1-
|
|
106
|
-
86;p-49575-15428179-
|
|
107
|
-
87;p-49575-15428179-
|
|
108
|
-
88;p-49575-15428179
|
|
109
|
-
89;p-49575-15428179-
|
|
110
|
-
90;p-49575-15428179-
|
|
111
|
-
91;p-49575-15428179-
|
|
112
|
-
92;p-49575-15428179-
|
|
113
|
-
93;p-49575-15428179-
|
|
114
|
-
94;p-49575-15428179-
|
|
115
|
-
95;p-49575-15428179-
|
|
116
|
-
96;p-49575-15428179-
|
|
117
|
-
97;p-49575-15428179-
|
|
118
|
-
98;p-49575-15428179
|
|
119
|
-
99;p-49575-15428179-
|
|
120
|
-
100;p-49575-15428179-
|
|
121
|
-
101;p-49575-15428179-
|
|
122
|
-
102;p-49575-15428179-
|
|
123
|
-
103;p-49575-15428179--1-
|
|
124
|
-
104;p-49575-15428179-
|
|
125
|
-
105;p-49575-15428179-
|
|
126
|
-
106;p-49575-15428179-
|
|
127
|
-
107;p-49575-15428179-
|
|
128
|
-
108;p-49575-15428179
|
|
129
|
-
109;p-49575-15428179-
|
|
130
|
-
110;
|
|
131
|
-
111;p-49575-15428179
|
|
132
|
-
112;p-49575-15428179-
|
|
133
|
-
113;p-49575-15428179-
|
|
134
|
-
114;p-49575-15428179-
|
|
135
|
-
115;p-49575-15428179-4266-
|
|
136
|
-
116;p-49575-15428179--1-
|
|
137
|
-
117;p-49575-15428179-
|
|
138
|
-
118;p-49575-15428179-
|
|
139
|
-
119;p-49575-15428179
|
|
140
|
-
120;p-49575-15428179--1-
|
|
141
|
-
121;p-49575-15428179-
|
|
142
|
-
122;p-49575-15428179
|
|
143
|
-
123;p-49575-15428179-
|
|
144
|
-
124;p-49575-15428179-
|
|
145
|
-
125;p-49575-15428179
|
|
146
|
-
126;
|
|
147
|
-
127;p-49575-15428179-
|
|
148
|
-
128;p-49575-15428179
|
|
149
|
-
129;p-49575-15428179-
|
|
150
|
-
130;p-49575-15428179--1-
|
|
151
|
-
131;p-49575-15428179-4266-
|
|
152
|
-
132;p-49575-15428179--1-
|
|
153
|
-
133;p-49575-15428179-
|
|
154
|
-
134;p-49575-15428179
|
|
155
|
-
135;p-49575-15428179-
|
|
156
|
-
136;p-49575-15428179--1-
|
|
157
|
-
137;p-49575-15428179
|
|
158
|
-
138;p-49575-15428179-
|
|
159
|
-
139;p-49575-15428179--1-
|
|
160
|
-
140;p-49575-15428179
|
|
161
|
-
141;p-49575-15428179-
|
|
162
|
-
142;p-49575-15428179--1-
|
|
163
|
-
143;p-49575-15428179
|
|
164
|
-
144;p-49575-15428179-
|
|
165
|
-
145;p-49575-15428179--1-
|
|
166
|
-
146;p-49575-15428179
|
|
167
|
-
147;p-49575-15428179-
|
|
168
|
-
148;p-49575-15428179--1-
|
|
169
|
-
149;p-49575-15428179
|
|
170
|
-
150;p-49575-15428179-
|
|
171
|
-
151;p-49575-15428179--1-
|
|
172
|
-
152;p-49575-15428179
|
|
173
|
-
153;p-49575-15428179-
|
|
174
|
-
154;p-49575-15428179
|
|
175
|
-
155;p-49575-15428179
|
|
176
|
-
156;p-49575-15428179-
|
|
177
|
-
157;p-49575-15428179
|
|
178
|
-
158;p-49575-15428179
|
|
179
|
-
159;p-49575-15428179-
|
|
180
|
-
160;p-49575-15428179
|
|
181
|
-
161;p-49575-15428179
|
|
182
|
-
162;p-49575-15428179-
|
|
183
|
-
163;p-49575-15428179
|
|
184
|
-
164;p-49575-15428179--1-
|
|
185
|
-
165;p-49575-15428179-
|
|
186
|
-
166;p-49575-15428179--1-
|
|
187
|
-
167;p-49575-15428179
|
|
188
|
-
168;p-49575-15428179-
|
|
189
|
-
169;p-49575-15428179
|
|
190
|
-
170;p-49575-15428179-
|
|
191
|
-
171;p-49575-15428179-
|
|
192
|
-
172;p-49575-15428179--1-
|
|
193
|
-
173;p-49575-15428179-
|
|
194
|
-
174;p-49575-15428179-
|
|
195
|
-
175;p-49575-15428179
|
|
196
|
-
176;p-49575-15428179-
|
|
197
|
-
177;p-49575-15428179-4268-
|
|
198
|
-
178;p-49575-15428179--1-
|
|
199
|
-
179;p-49575-15428179-4268-
|
|
200
|
-
180;p-49575-15428179--1-
|
|
201
|
-
181;p-49575-15428179-4268-
|
|
202
|
-
182;p-49575-15428179--1-
|
|
203
|
-
183;p-49575-15428179-4268-
|
|
204
|
-
184;p-49575-15428179--1-
|
|
205
|
-
185;p-49575-15428179-4268-
|
|
206
|
-
186;p-49575-15428179--1-
|
|
207
|
-
187;p-49575-15428179-4268-
|
|
208
|
-
188;p-49575-15428179--1-
|
|
209
|
-
189;p-49575-15428179-4268-
|
|
210
|
-
190;p-49575-15428179--1-
|
|
211
|
-
191;p-49575-15428179-4268-
|
|
212
|
-
192;p-49575-15428179--1-
|
|
213
|
-
193;p-49575-15428179-4268-
|
|
214
|
-
194;p-49575-15428179--1-
|
|
215
|
-
195;p-49575-15428179-4268-
|
|
216
|
-
196;p-49575-15428179--1-
|
|
217
|
-
197;p-49575-15428179-4268-
|
|
218
|
-
198;p-49575-15428179--1-
|
|
219
|
-
199;p-49575-15428179-4268-
|
|
220
|
-
200;p-49575-15428179--1-
|
|
221
|
-
201;p-49575-15428179-
|
|
222
|
-
202;p-49575-15428179--1-
|
|
223
|
-
203;p-49575-15428179-
|
|
224
|
-
204;p-49575-15428179--1-
|
|
225
|
-
205;p-49575-15428179-
|
|
226
|
-
206;p-49575-15428179--1-
|
|
227
|
-
207;p-49575-15428179-
|
|
228
|
-
208;p-49575-15428179--1-
|
|
229
|
-
209;p-49575-15428179-
|
|
230
|
-
210;p-49575-15428179--1-
|
|
231
|
-
211;p-49575-15428179-
|
|
232
|
-
212;p-49575-15428179--1-
|
|
233
|
-
213;p-49575-15428179-
|
|
234
|
-
214;p-49575-15428179--1-
|
|
235
|
-
215;p-49575-15428179-
|
|
236
|
-
216;p-49575-15428179--1-
|
|
237
|
-
217;p-49575-15428179-
|
|
238
|
-
218;p-49575-15428179--1-
|
|
239
|
-
219;p-49575-15428179-
|
|
240
|
-
220;p-49575-15428179--1-
|
|
241
|
-
221;p-49575-15428179-
|
|
242
|
-
222;p-49575-15428179--1-
|
|
243
|
-
223;p-49575-15428179-
|
|
244
|
-
224;p-49575-15428179--1-
|
|
245
|
-
225;p-49575-15428179-
|
|
246
|
-
226;p-49575-15428179--1-
|
|
247
|
-
227;p-49575-15428179-
|
|
248
|
-
228;p-49575-15428179--1-
|
|
249
|
-
229;p-49575-15428179-
|
|
250
|
-
230;p-49575-15428179--1-
|
|
251
|
-
231;p-49575-15428179-
|
|
252
|
-
232;p-49575-15428179--1-
|
|
253
|
-
233;p-49575-15428179-
|
|
254
|
-
234;p-49575-15428179--1-
|
|
255
|
-
235;p-49575-15428179-
|
|
256
|
-
236;p-49575-15428179--1-
|
|
257
|
-
237;p-49575-15428179-
|
|
258
|
-
238;p-49575-15428179--1-
|
|
259
|
-
239;p-49575-15428179-
|
|
260
|
-
240;p-49575-15428179--1-
|
|
261
|
-
241;p-49575-15428179-
|
|
262
|
-
242;p-49575-15428179--1-
|
|
263
|
-
243;p-49575-15428179--1-
|
|
264
|
-
244;p-49575-15428179--1-
|
|
265
|
-
245;p-49575-15428179--1-
|
|
266
|
-
246;p-49575-15428179--1-
|
|
267
|
-
247;p-49575-15428179--1-
|
|
268
|
-
248;p-49575-15428179--1-
|
|
269
|
-
249;p-49575-15428179--1-
|
|
270
|
-
250;p-49575-15428179--1-
|
|
271
|
-
251;p-49575-15428179--1-
|
|
272
|
-
252;p-49575-15428179--1-
|
|
273
|
-
253;p-49575-15428179--1-
|
|
274
|
-
254;p-49575-15428179--1-
|
|
275
|
-
255;p-49575-15428179--1-
|
|
276
|
-
256;p-49575-15428179--1-
|
|
277
|
-
257;p-49575-15428179--1-
|
|
278
|
-
258;p-49575-15428179--1-
|
|
279
|
-
259;p-49575-15428179
|
|
280
|
-
260;p-49575-15428179--1-
|
|
281
|
-
261;p-49575-15428179
|
|
282
|
-
262;p-49575-15428179--1-
|
|
283
|
-
263;p-49575-15428179
|
|
284
|
-
264;p-49575-15428179--1-
|
|
285
|
-
265;p-49575-15428179
|
|
286
|
-
266;p-49575-15428179--1-
|
|
287
|
-
267;p-49575-15428179
|
|
288
|
-
268;p-49575-15428179--1-
|
|
289
|
-
269;p-49575-15428179
|
|
290
|
-
270;p-49575-15428179
|
|
291
|
-
271;p-49575-15428179--1-
|
|
292
|
-
272;p-49575-15428179
|
|
293
|
-
273;p-49575-15428179
|
|
294
|
-
274;p-49575-15428179--1-
|
|
295
|
-
275;p-49575-15428179-
|
|
296
|
-
276;p-49575-15428179
|
|
297
|
-
277;p-49575-15428179-
|
|
298
|
-
278;p-49575-15428179
|
|
299
|
-
279;p-49575-15428179-
|
|
300
|
-
280;p-49575-15428179--1-
|
|
301
|
-
281;p-49575-15428179-
|
|
302
|
-
282;p-49575-15428179
|
|
303
|
-
283;p-49575-15428179-
|
|
304
|
-
284;p-49575-15428179
|
|
305
|
-
285;p-49575-15428179-
|
|
306
|
-
286;p-49575-15428179-
|
|
307
|
-
287;p-49575-15428179--1-
|
|
308
|
-
288;p-49575-15428179-
|
|
309
|
-
289;p-49575-15428179-
|
|
310
|
-
290;p-49575-15428179--1-
|
|
311
|
-
291;p-49575-15428179-
|
|
312
|
-
292;p-49575-15428179-
|
|
313
|
-
293;p-49575-15428179
|
|
314
|
-
294;p-49575-15428179-4344-2093;y;11.9;;5;297;11;2772
|
|
315
|
-
295;p-49575-15428179-4466-2233;run;55;2.1;5;298;12;35261
|
|
316
|
-
296;p-49575-15428179--1-2233;run;11;;5;299;12;35261
|
|
317
|
-
297;p-49575-15428179-4344-2094;p;11.9;;5;300;11;2913
|
|
318
|
-
298;p-49575-15428179-4490-2268;R.callBids;53;;5;301;12;15422
|
|
319
|
-
299;p-49575-15428179--1-2268;R.callBids;11;;5;302;12;15422
|
|
320
|
-
300;p-49575-15428179-4344-2095;f;11.9;1.9;5;303;37;258
|
|
321
|
-
301;p-49575-15428179-4490-2269;(anonymous);53;15;5;304;12;15854
|
|
322
|
-
302;p-49575-15428179--1-2391;(anonymous);11;;5;305;12;16620
|
|
323
|
-
303;p-49575-15428179--1-2100;p;10;;5;306;11;2913
|
|
324
|
-
304;p-49575-15428179--1-2392;T;38;38;5;;12;53984
|
|
325
|
-
305;p-49575-15428179--1-2392;T;11;1;5;307;12;53984
|
|
326
|
-
306;p-49575-15428179--1-2101;o.<computed>;10;;5;308;11;3054
|
|
327
|
-
307;p-49575-15428179-5170-2410;callBids;10.1;;5;309;12;21602
|
|
328
|
-
308;p-49575-15428179--1-2102;(anonymous);10;10;5;;12;12825
|
|
329
|
-
309;p-49575-15428179-5170-2411;(anonymous);10.1;10.1;5;;12;21665
|
|
60
|
+
40;p-49575-15428179-3719-1230;(anonymous);21.2;1.2;5;50;0;0
|
|
61
|
+
41;r-34282;Run microtasks;13.8;0.2;;51;;
|
|
62
|
+
42;r-39351;Function call;85.7;0.5;3;52-54;0;97118
|
|
63
|
+
43;p-49575-15428179-5391-2767;(anonymous);14.9;;6;54;0;0
|
|
64
|
+
44;r-49156;Run microtasks;20.1;1.1;;55;;
|
|
65
|
+
45;r-74582;Function call;23.3;0.4;3;56;0;97118
|
|
66
|
+
46;p-49575-15428179-12694-3277;(anonymous);29.5;;3;57;0;51073
|
|
67
|
+
47;r-101251;Run microtasks;22.2;22.2;;;;
|
|
68
|
+
48;p-49575-15428179-2409-265;(anonymous);30.6;;7;58;58;31
|
|
69
|
+
49;p-49575-15428179-3407-1095;apiVersionSuffix;9.9;9.9;3;;0;13
|
|
70
|
+
50;p-49575-15428179-3719-1231;(anonymous);20;8;5;59;4;214
|
|
71
|
+
51;p-49575-15428179-3889-1540;(anonymous);13.6;2.8;9;60;0;61837
|
|
72
|
+
52;p-49575-15428179-4266-1907;fg;74.2;;3;61;0;97118
|
|
73
|
+
53;p-49575-15428179--1-1907;fg;11;;3;62;0;97118
|
|
74
|
+
54;p-49575-15428179-5391-2768;(anonymous);14.9;4;6;63;0;9
|
|
75
|
+
55;p-49575-15428179-5508-3045;b;19;6.2;6;64;32;154420
|
|
76
|
+
56;p-49575-15428179-7577-1907;fg;22.9;;3;65;0;97118
|
|
77
|
+
57;p-49575-15428179-12694-3331;(anonymous);29.5;;5;66;12;31379
|
|
78
|
+
58;p-49575-15428179-2409-266;ready;30.6;;7;67;57;131534
|
|
79
|
+
59;p-49575-15428179-3781-1233;t;12;12;5;;11;4994
|
|
80
|
+
60;p-49575-15428179-3896-1547;_setConfig;10.8;;9;68;0;65310
|
|
81
|
+
61;p-49575-15428179-4266-1908;(anonymous);74.2;;9;69;0;58836
|
|
82
|
+
62;p-49575-15428179--1-1908;(anonymous);11;;9;70;0;58836
|
|
83
|
+
63;p-49575-15428179-5420-2783;(anonymous);10.9;10.9;6;;32;534645
|
|
84
|
+
64;p-49575-15428179-5508-3046;EB.next;12.7;;6;71;32;154125
|
|
85
|
+
65;p-49575-15428179-7577-4811;rC;22.9;;8;72;615;11
|
|
86
|
+
66;p-49575-15428179-12694-6394;success;29.5;4.1;5;73;45;10416
|
|
87
|
+
67;p-49575-15428179-2409-267;(anonymous);30.6;10.7;7;74;57;131546
|
|
88
|
+
68;p-49575-15428179-3896-1548;Z.cmd.push;10.8;;5;75;12;106129
|
|
89
|
+
69;p-49575-15428179-4266-1909;_requestBids;74.2;;9;76;0;67017
|
|
90
|
+
70;p-49575-15428179--1-1909;_requestBids;11;;9;77;0;67017
|
|
91
|
+
71;p-49575-15428179-5508-3047;CB;12.7;;6;78;32;153855
|
|
92
|
+
72;p-49575-15428179-7577-4812;pC;22.9;0.1;8;79-81;613;11
|
|
93
|
+
73;p-49575-15428179--1-6485;onResponse;25.4;0.1;5;81;45;11700
|
|
94
|
+
74;p-49575-15428179--1-281;ge;19.9;1.2;7;82;57;159608
|
|
95
|
+
75;p-49575-15428179-3896-1549;(anonymous);10.8;;9;83;0;65404
|
|
96
|
+
76;p-49575-15428179-4266-1910;Z.cmd.push;74.2;;5;84;12;106129
|
|
97
|
+
77;p-49575-15428179--1-1910;Z.cmd.push;11;;5;85;12;106129
|
|
98
|
+
78;p-49575-15428179-5508-3048;(anonymous);12.7;0.8;6;86;32;53308
|
|
99
|
+
79;p-49575-15428179-7578-4819;mC;12;1.2;8;87;611;11
|
|
100
|
+
80;p-49575-15428179-7685-5087;config;10.7;0.5;8;88;602;23
|
|
101
|
+
81;p-49575-15428179-12788-6496;(anonymous);25.3;0.1;5;89;12;130313
|
|
102
|
+
82;p-49575-15428179-2432-284;e.init;18.7;;7;90;57;139327
|
|
103
|
+
83;p-49575-15428179-3896-1550;v;10.8;;5;91;12;52598
|
|
104
|
+
84;p-49575-15428179-4266-1911;(anonymous);74.2;;9;92;0;67101
|
|
105
|
+
85;p-49575-15428179--1-1911;(anonymous);11;;9;93;0;67101
|
|
106
|
+
86;p-49575-15428179-5520-3068;PV.g;12;;6;94;32;300710
|
|
107
|
+
87;p-49575-15428179-7580-4824;tB;10.9;10.9;8;;593;11
|
|
108
|
+
88;p-49575-15428179-7688-5089;Sp.push;10.2;;8;95;410;150
|
|
109
|
+
89;p-49575-15428179--1-6500;(anonymous);25.2;;5;96;12;16537
|
|
110
|
+
90;p-49575-15428179-2432-296;(anonymous);18.7;0.4;7;97;57;180286
|
|
111
|
+
91;p-49575-15428179-3896-1552;A;10.8;;5;98;12;53200
|
|
112
|
+
92;p-49575-15428179-4266-1912;(anonymous);74.2;;5;99;12;101262
|
|
113
|
+
93;p-49575-15428179--1-1912;(anonymous);11;;5;100;12;101262
|
|
114
|
+
94;p-49575-15428179-5520-3069;M.id;12;0.4;6;101;32;437499
|
|
115
|
+
95;p-49575-15428179-7688-5090;Sp.flush;10.2;;8;102;411;27
|
|
116
|
+
96;p-49575-15428179--1-6501;(anonymous);25.2;;5;103;12;16551
|
|
117
|
+
97;p-49575-15428179-2435-299;(anonymous);18.3;0.3;7;104;57;184601
|
|
118
|
+
98;p-49575-15428179-3896-1553;(anonymous);10.8;10.8;5;;12;53271
|
|
119
|
+
99;p-49575-15428179-4266-1913;y;74.2;;5;105;11;2772
|
|
120
|
+
100;p-49575-15428179--1-1913;y;11;;5;106;11;2772
|
|
121
|
+
101;p-49575-15428179-5523-3075;mt;11.6;1.5;6;107;32;103624
|
|
122
|
+
102;p-49575-15428179-7688-5094;Tp;10.2;;8;108;407;364
|
|
123
|
+
103;p-49575-15428179--1-6502;(anonymous);25.2;;5;109;12;16214
|
|
124
|
+
104;p-49575-15428179--1-301;(anonymous);18;8.4;7;110;57;187793
|
|
125
|
+
105;p-49575-15428179-4266-1914;p;74.2;;5;111;11;2913
|
|
126
|
+
106;p-49575-15428179--1-1914;p;11;;5;112;11;2913
|
|
127
|
+
107;p-49575-15428179-5534-3091;_.Xl;10.1;10.1;6;;32;61998
|
|
128
|
+
108;p-49575-15428179-7688-5095;Om;10.2;;8;113;383;1211
|
|
129
|
+
109;p-49575-15428179--1-6503;adapterDone;25.2;;5;114;12;38074
|
|
130
|
+
110;r-10293;Recalculate style;9.6;9.6;7;;57;187957
|
|
131
|
+
111;p-49575-15428179-4266-1915;(anonymous);74.2;;5;115;12;131446
|
|
132
|
+
112;p-49575-15428179--1-1915;(anonymous);11;;5;116;12;131446
|
|
133
|
+
113;p-49575-15428179-7688-5096;w;10.2;;8;117;409;10
|
|
134
|
+
114;p-49575-15428179--1-6504;finally;25.2;;5;118;12;132456
|
|
135
|
+
115;p-49575-15428179-4266-1916;measureHookTime;74.2;;5;119;12;129319
|
|
136
|
+
116;p-49575-15428179--1-1916;measureHookTime;11;;5;120;12;129319
|
|
137
|
+
117;p-49575-15428179-7688-5097;c;10.2;10.2;8;;782;618
|
|
138
|
+
118;p-49575-15428179--1-6505;then;25.2;;5;121;12;132201
|
|
139
|
+
119;p-49575-15428179-4266-1917;(anonymous);74.2;;5;122;12;131599
|
|
140
|
+
120;p-49575-15428179--1-1917;(anonymous);11;;5;123;12;131599
|
|
141
|
+
121;p-49575-15428179--1-6506;o;25.2;;5;124;12;131922
|
|
142
|
+
122;p-49575-15428179-4266-1918;(anonymous);74.2;;5;125;31;1765
|
|
143
|
+
123;p-49575-15428179--1-1918;(anonymous);11;;5;126;31;1765
|
|
144
|
+
124;p-49575-15428179--1-6507;(anonymous);25.2;;5;127;12;132252
|
|
145
|
+
125;p-49575-15428179-4266-1919;D;74.2;;5;128;31;1071
|
|
146
|
+
126;p-49575-15428179--1-1919;D;11;;5;129;31;1071
|
|
147
|
+
127;p-49575-15428179--1-6508;s;25.2;;5;130;12;132268
|
|
148
|
+
128;p-49575-15428179-4266-1920;iab;74.2;;5;131;31;223
|
|
149
|
+
129;p-49575-15428179--1-1920;iab;11;;5;132;31;223
|
|
150
|
+
130;p-49575-15428179--1-6509;(anonymous);25.2;;5;133;12;132484
|
|
151
|
+
131;p-49575-15428179-4266-1921;v;74.2;;5;134;14;1042
|
|
152
|
+
132;p-49575-15428179--1-1921;v;11;;5;135;14;1042
|
|
153
|
+
133;p-49575-15428179--1-6510;(anonymous);25.2;;5;136;12;38103
|
|
154
|
+
134;p-49575-15428179-4266-1922;o;74.2;;5;137;12;131922
|
|
155
|
+
135;p-49575-15428179--1-1922;o;11;;5;138;12;131922
|
|
156
|
+
136;p-49575-15428179--1-6511;T;25.2;;5;139;12;37576
|
|
157
|
+
137;p-49575-15428179-4266-1923;(anonymous);74.2;;5;140;14;1125
|
|
158
|
+
138;p-49575-15428179--1-1923;(anonymous);11;;5;141;14;1125
|
|
159
|
+
139;p-49575-15428179--1-6512;ae;25.2;0;5;142;12;35063
|
|
160
|
+
140;p-49575-15428179-4266-1924;window.__uspapi;74.2;;0;143;1;262214
|
|
161
|
+
141;p-49575-15428179--1-1924;window.__uspapi;11;;0;144;1;262214
|
|
162
|
+
142;p-49575-15428179--1-6513;oe;25.2;5.9;5;145;12;34322
|
|
163
|
+
143;p-49575-15428179-4266-1925;(anonymous);74.2;;5;146;14;937
|
|
164
|
+
144;p-49575-15428179--1-1925;(anonymous);11;;5;147;14;937
|
|
165
|
+
145;p-49575-15428179--1-6526;t.emit;19.2;;5;148;12;63485
|
|
166
|
+
146;p-49575-15428179-4266-1926;consentDataCallback;74.2;;5;149;31;311
|
|
167
|
+
147;p-49575-15428179--1-1926;consentDataCallback;11;;5;150;31;311
|
|
168
|
+
148;p-49575-15428179--1-6527;(anonymous);19.2;;5;151;12;63498
|
|
169
|
+
149;p-49575-15428179-4266-1927;h;74.2;;5;152;31;1943
|
|
170
|
+
150;p-49575-15428179--1-1927;h;11;;5;153;31;1943
|
|
171
|
+
151;p-49575-15428179--1-6528;(anonymous);19.2;2.7;5;154;12;63738
|
|
172
|
+
152;p-49575-15428179-4266-1928;o;74.2;;5;155;31;1101
|
|
173
|
+
153;p-49575-15428179--1-1928;o;11;;5;156;31;1101
|
|
174
|
+
154;p-49575-15428179-12812-6554;(anonymous);16.5;0.2;3;157;0;113503
|
|
175
|
+
155;p-49575-15428179-4266-1929;(anonymous);74.2;;5;158;31;1800
|
|
176
|
+
156;p-49575-15428179--1-1929;(anonymous);11;;5;159;31;1800
|
|
177
|
+
157;p-49575-15428179-12812-6555;d3.<computed>.<computed>;16.4;;3;160;0;47634
|
|
178
|
+
158;p-49575-15428179-4266-1930;(anonymous);74.2;0.3;5;161;12;130313
|
|
179
|
+
159;p-49575-15428179--1-1930;(anonymous);11;;5;162;12;130313
|
|
180
|
+
160;p-49575-15428179-12812-6556;(anonymous);16.4;16.4;3;;0;43042
|
|
181
|
+
161;p-49575-15428179-4268-1932;p;74;;5;163;11;2913
|
|
182
|
+
162;p-49575-15428179--1-1932;p;11;;5;164;11;2913
|
|
183
|
+
163;p-49575-15428179-4268-1933;(anonymous);74;;5;165;12;131446
|
|
184
|
+
164;p-49575-15428179--1-1933;(anonymous);11;;5;166;12;131446
|
|
185
|
+
165;p-49575-15428179-4268-1934;measureHookTime;74;;5;167;12;129319
|
|
186
|
+
166;p-49575-15428179--1-1934;measureHookTime;11;;5;168;12;129319
|
|
187
|
+
167;p-49575-15428179-4268-1935;(anonymous);74;;5;169;12;131599
|
|
188
|
+
168;p-49575-15428179--1-1935;(anonymous);11;;5;170;12;131599
|
|
189
|
+
169;p-49575-15428179-4268-1936;(anonymous);74;;5;171;29;1841
|
|
190
|
+
170;p-49575-15428179--1-1936;(anonymous);11;;5;172;29;1841
|
|
191
|
+
171;p-49575-15428179-4268-1937;t;74;;5;173;29;1863
|
|
192
|
+
172;p-49575-15428179--1-1937;t;11;;5;174;29;1863
|
|
193
|
+
173;p-49575-15428179-4268-1938;(anonymous);74;;5;175;12;130313
|
|
194
|
+
174;p-49575-15428179--1-1938;(anonymous);11;;5;176;12;130313
|
|
195
|
+
175;p-49575-15428179-4268-1939;p;74;;5;177;11;2913
|
|
196
|
+
176;p-49575-15428179--1-1939;p;11;;5;178;11;2913
|
|
197
|
+
177;p-49575-15428179-4268-1940;(anonymous);74;;5;179;12;131446
|
|
198
|
+
178;p-49575-15428179--1-1940;(anonymous);11;;5;180;12;131446
|
|
199
|
+
179;p-49575-15428179-4268-1941;measureHookTime;74;;5;181;12;129319
|
|
200
|
+
180;p-49575-15428179--1-1941;measureHookTime;11;;5;182;12;129319
|
|
201
|
+
181;p-49575-15428179-4268-1942;(anonymous);74;;5;183;12;131599
|
|
202
|
+
182;p-49575-15428179--1-1942;(anonymous);11;;5;184;12;131599
|
|
203
|
+
183;p-49575-15428179-4268-1943;(anonymous);74;;5;185;30;4533
|
|
204
|
+
184;p-49575-15428179--1-1943;(anonymous);11;;5;186;30;4533
|
|
205
|
+
185;p-49575-15428179-4268-1944;n;74;;5;187;30;4555
|
|
206
|
+
186;p-49575-15428179--1-1944;n;11;;5;188;30;4555
|
|
207
|
+
187;p-49575-15428179-4268-1945;(anonymous);74;;5;189;12;130313
|
|
208
|
+
188;p-49575-15428179--1-1945;(anonymous);11;;5;190;12;130313
|
|
209
|
+
189;p-49575-15428179-4268-1946;p;74;;5;191;11;2913
|
|
210
|
+
190;p-49575-15428179--1-1946;p;11;;5;192;11;2913
|
|
211
|
+
191;p-49575-15428179-4268-1947;(anonymous);74;;5;193;12;131446
|
|
212
|
+
192;p-49575-15428179--1-1947;(anonymous);11;;5;194;12;131446
|
|
213
|
+
193;p-49575-15428179-4268-1948;measureHookTime;74;;5;195;12;129319
|
|
214
|
+
194;p-49575-15428179--1-1948;measureHookTime;11;;5;196;12;129319
|
|
215
|
+
195;p-49575-15428179-4268-1949;(anonymous);74;;5;197;12;131599
|
|
216
|
+
196;p-49575-15428179--1-1949;(anonymous);11;;5;198;12;131599
|
|
217
|
+
197;p-49575-15428179-4268-1950;(anonymous);74;;5;199;46;7785
|
|
218
|
+
198;p-49575-15428179--1-1950;(anonymous);11;;5;200;46;7785
|
|
219
|
+
199;p-49575-15428179-4268-1951;z;74;0.7;5;201;46;6013
|
|
220
|
+
200;p-49575-15428179--1-1951;z;11;;5;202;46;6013
|
|
221
|
+
201;p-49575-15428179-4273-1956;(anonymous);73.3;;5;203;12;130313
|
|
222
|
+
202;p-49575-15428179--1-1956;(anonymous);11;;5;204;12;130313
|
|
223
|
+
203;p-49575-15428179-4273-1957;p;73.3;;5;205;11;2913
|
|
224
|
+
204;p-49575-15428179--1-1957;p;11;;5;206;11;2913
|
|
225
|
+
205;p-49575-15428179-4273-1958;(anonymous);73.3;1.1;5;207;12;103253
|
|
226
|
+
206;p-49575-15428179--1-1958;(anonymous);11;;5;208;12;103253
|
|
227
|
+
207;p-49575-15428179-4300-1972;p;72.1;;5;209;11;2913
|
|
228
|
+
208;p-49575-15428179--1-1972;p;11;;5;210;11;2913
|
|
229
|
+
209;p-49575-15428179-4300-1973;(anonymous);72.1;;5;211;12;131446
|
|
230
|
+
210;p-49575-15428179--1-1973;(anonymous);11;;5;212;12;131446
|
|
231
|
+
211;p-49575-15428179-4300-1974;measureHookTime;72.1;;5;213;12;129319
|
|
232
|
+
212;p-49575-15428179--1-1974;measureHookTime;11;;5;214;12;129319
|
|
233
|
+
213;p-49575-15428179-4300-1975;(anonymous);72.1;;5;215;12;131599
|
|
234
|
+
214;p-49575-15428179--1-1975;(anonymous);11;;5;216;12;131599
|
|
235
|
+
215;p-49575-15428179-4300-1976;(anonymous);72.1;0.3;5;217;55;5329
|
|
236
|
+
216;p-49575-15428179--1-1976;(anonymous);11;;5;218;55;5329
|
|
237
|
+
217;p-49575-15428179-4304-1982;then;71.9;;5;219;12;132201
|
|
238
|
+
218;p-49575-15428179--1-1982;then;11;;5;220;12;132201
|
|
239
|
+
219;p-49575-15428179-4304-1983;o;71.9;;5;221;12;131922
|
|
240
|
+
220;p-49575-15428179--1-1983;o;11;;5;222;12;131922
|
|
241
|
+
221;p-49575-15428179-4304-1984;(anonymous);71.9;;5;223;12;132252
|
|
242
|
+
222;p-49575-15428179--1-1984;(anonymous);11;;5;224;12;132252
|
|
243
|
+
223;p-49575-15428179-4304-1985;s;71.9;;5;225;12;132268
|
|
244
|
+
224;p-49575-15428179--1-1985;s;11;;5;226;12;132268
|
|
245
|
+
225;p-49575-15428179-4304-1986;(anonymous);71.9;1;5;227;55;5475
|
|
246
|
+
226;p-49575-15428179--1-1986;(anonymous);11;;5;228;55;5475
|
|
247
|
+
227;p-49575-15428179--1-1999;(anonymous);70.9;;5;229;12;130313
|
|
248
|
+
228;p-49575-15428179--1-1999;(anonymous);11;;5;230;12;130313
|
|
249
|
+
229;p-49575-15428179--1-2000;p;70.9;;5;231;11;2913
|
|
250
|
+
230;p-49575-15428179--1-2000;p;11;;5;232;11;2913
|
|
251
|
+
231;p-49575-15428179--1-2001;o.<computed>;70.9;;5;233;11;3054
|
|
252
|
+
232;p-49575-15428179--1-2001;o.<computed>;11;;5;234;11;3054
|
|
253
|
+
233;p-49575-15428179--1-2002;(anonymous);70.9;1.9;5;235;12;100468
|
|
254
|
+
234;p-49575-15428179--1-2002;(anonymous);11;;5;236;12;100468
|
|
255
|
+
235;p-49575-15428179--1-2045;then;69;;5;237;12;132201
|
|
256
|
+
236;p-49575-15428179--1-2045;then;11;;5;238;12;132201
|
|
257
|
+
237;p-49575-15428179--1-2046;o;69;;5;239;12;131922
|
|
258
|
+
238;p-49575-15428179--1-2046;o;11;;5;240;12;131922
|
|
259
|
+
239;p-49575-15428179--1-2047;(anonymous);69;;5;241;12;132252
|
|
260
|
+
240;p-49575-15428179--1-2047;(anonymous);11;;5;242;12;132252
|
|
261
|
+
241;p-49575-15428179--1-2048;s;69;;5;243;12;132268
|
|
262
|
+
242;p-49575-15428179--1-2048;s;11;;5;244;12;132268
|
|
263
|
+
243;p-49575-15428179--1-2049;(anonymous);69;;5;245;12;101075
|
|
264
|
+
244;p-49575-15428179--1-2049;(anonymous);11;;5;246;12;101075
|
|
265
|
+
245;p-49575-15428179--1-2050;y;69;;5;247;11;2772
|
|
266
|
+
246;p-49575-15428179--1-2050;y;11;;5;248;11;2772
|
|
267
|
+
247;p-49575-15428179--1-2051;p;69;;5;249;11;2913
|
|
268
|
+
248;p-49575-15428179--1-2051;p;11;;5;250;11;2913
|
|
269
|
+
249;p-49575-15428179--1-2052;(anonymous);69;;5;251;12;131446
|
|
270
|
+
250;p-49575-15428179--1-2052;(anonymous);11;;5;252;12;131446
|
|
271
|
+
251;p-49575-15428179--1-2053;measureHookTime;69;;5;253;12;129319
|
|
272
|
+
252;p-49575-15428179--1-2053;measureHookTime;11;;5;254;12;129319
|
|
273
|
+
253;p-49575-15428179--1-2054;(anonymous);69;;5;255;12;131599
|
|
274
|
+
254;p-49575-15428179--1-2054;(anonymous);11;;5;256;12;131599
|
|
275
|
+
255;p-49575-15428179--1-2055;(anonymous);69;;5;257;48;1130
|
|
276
|
+
256;p-49575-15428179--1-2055;(anonymous);11;;5;258;48;1130
|
|
277
|
+
257;p-49575-15428179--1-2056;f;69;0.1;5;259;48;1477
|
|
278
|
+
258;p-49575-15428179--1-2056;f;11;;5;260;48;1477
|
|
279
|
+
259;p-49575-15428179-4331-2058;(anonymous);68.9;0.1;5;261;12;130313
|
|
280
|
+
260;p-49575-15428179--1-2058;(anonymous);11;;5;262;12;130313
|
|
281
|
+
261;p-49575-15428179-4332-2066;p;68.8;;5;263;11;2913
|
|
282
|
+
262;p-49575-15428179--1-2066;p;11;;5;264;11;2913
|
|
283
|
+
263;p-49575-15428179-4332-2067;o.<computed>;68.8;;5;265;11;3054
|
|
284
|
+
264;p-49575-15428179--1-2067;o.<computed>;11;;5;266;11;3054
|
|
285
|
+
265;p-49575-15428179-4332-2068;(anonymous);68.8;1.8;5;267;12;101576
|
|
286
|
+
266;p-49575-15428179--1-2068;(anonymous);11;;5;268;12;101576
|
|
287
|
+
267;p-49575-15428179-4344-2089;callBids;67;;5;269-271;12;38941
|
|
288
|
+
268;p-49575-15428179--1-2089;callBids;11;;5;271;12;38941
|
|
289
|
+
269;p-49575-15428179-4344-2090;measureTime;11.9;;5;272;12;129261
|
|
290
|
+
270;p-49575-15428179-4466-2230;(anonymous);55;;5;273;12;40079
|
|
291
|
+
271;p-49575-15428179--1-2230;(anonymous);11;;5;274;12;40079
|
|
292
|
+
272;p-49575-15428179-4344-2091;(anonymous);11.9;;5;275;12;130313
|
|
293
|
+
273;p-49575-15428179-4466-2231;ce;55;;5;276;12;35185
|
|
294
|
+
274;p-49575-15428179--1-2231;ce;11;;5;277;12;35185
|
|
295
|
+
275;p-49575-15428179-4344-2092;(anonymous);11.9;;5;278;12;39009
|
|
296
|
+
276;p-49575-15428179-4466-2232;a;55;;5;279;12;38327
|
|
297
|
+
277;p-49575-15428179--1-2232;a;11;;5;280;12;38327
|
|
298
|
+
278;p-49575-15428179-4344-2093;y;11.9;;5;281;11;2772
|
|
299
|
+
279;p-49575-15428179-4466-2233;run;55;2.1;5;282;12;35261
|
|
300
|
+
280;p-49575-15428179--1-2233;run;11;;5;283;12;35261
|
|
301
|
+
281;p-49575-15428179-4344-2094;p;11.9;;5;284;11;2913
|
|
302
|
+
282;p-49575-15428179-4490-2268;R.callBids;53;;5;285;12;15422
|
|
303
|
+
283;p-49575-15428179--1-2268;R.callBids;11;;5;286;12;15422
|
|
304
|
+
284;p-49575-15428179-4344-2095;f;11.9;1.9;5;287;37;258
|
|
305
|
+
285;p-49575-15428179-4490-2269;(anonymous);53;15;5;288;12;15854
|
|
306
|
+
286;p-49575-15428179--1-2391;(anonymous);11;;5;289;12;16620
|
|
307
|
+
287;p-49575-15428179--1-2100;p;10;;5;290;11;2913
|
|
308
|
+
288;p-49575-15428179--1-2392;T;38;38;5;;12;53984
|
|
309
|
+
289;p-49575-15428179--1-2392;T;11;1;5;291;12;53984
|
|
310
|
+
290;p-49575-15428179--1-2101;o.<computed>;10;;5;292;11;3054
|
|
311
|
+
291;p-49575-15428179-5170-2410;callBids;10.1;;5;293;12;21602
|
|
312
|
+
292;p-49575-15428179--1-2102;(anonymous);10;10;5;;12;12825
|
|
313
|
+
293;p-49575-15428179-5170-2411;(anonymous);10.1;10.1;5;;12;21665
|
|
330
314
|
|
|
331
315
|
IMPORTANT: Never show eventKey to the user.
|
|
332
316
|
|
|
@@ -358,18 +342,18 @@ This is the bottom-up summary for the entire trace. Only the top 20 activities (
|
|
|
358
342
|
- self: 49 ms, total: 55 ms, source: Compile script
|
|
359
343
|
- self: 49 ms, total: 61 ms, source: setTimeout
|
|
360
344
|
- self: 31 ms, total: 31 ms, source: Layout (url: https://news.yahoo.com/, line: 57, column: 187957)
|
|
361
|
-
- self:
|
|
345
|
+
- self: 30 ms, total: 31 ms, source: Recalculate style (url: https://news.yahoo.com/, line: 57, column: 187957)
|
|
362
346
|
- self: 29 ms, total: 32 ms, source: clearTimeout
|
|
363
|
-
- self:
|
|
347
|
+
- self: 26 ms, total: 50 ms, source: Parse HTML
|
|
364
348
|
- self: 18 ms, total: 19 ms, source: aC (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 19068)
|
|
365
|
-
- self:
|
|
349
|
+
- self: 18 ms, total: 226 ms, source: Function call
|
|
366
350
|
- self: 11 ms, total: 12 ms, source: fetch
|
|
351
|
+
- self: 11 ms, total: 212 ms, source: Run microtasks
|
|
367
352
|
- self: 11 ms, total: 12 ms, source: evaluate
|
|
368
|
-
- self: 10 ms, total: 212 ms, source: Run microtasks
|
|
369
353
|
- self: 9 ms, total: 10 ms, source: Minor GC
|
|
370
354
|
- self: 8 ms, total: 226 ms, source: Evaluate script
|
|
371
355
|
- self: 7 ms, total: 7 ms, source: (anonymous) (url: https://s.yimg.com/du/ay/wnsrvbjmeprtfrnfx.js, line: 111, column: 4705)
|
|
372
|
-
- self:
|
|
356
|
+
- self: 6 ms, total: 8 ms, source: appendChild
|
|
373
357
|
- self: 6 ms, total: 8 ms, source: Ei (url: https://s.yimg.com/aaq/benji/benji-2.2.99.js, line: 0, column: 24493)
|
|
374
358
|
- self: 6 ms, total: 6 ms, source: Il (url: https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202503250101/pubads_impl.js, line: 32, column: 58003)
|
|
375
359
|
- self: 5 ms, total: 7 ms, source: n (url: https://s.yimg.com/aaq/prebid/prebid-2.0.js, line: 11, column: 3881)
|
|
@@ -559,7 +543,7 @@ Available insights:
|
|
|
559
543
|
example question: How can I update my CSS to avoid layout shifts caused by incorrect `font-display` properties?
|
|
560
544
|
- insight name: ThirdParties
|
|
561
545
|
description: 3rd party code can significantly impact load performance. [Reduce and defer loading of 3rd party code](https://developer.chrome.com/docs/performance/insights/third-parties) to prioritize your page's content.
|
|
562
|
-
relevant trace bounds: {min: 157423742399µs, max:
|
|
546
|
+
relevant trace bounds: {min: 157423742399µs, max: 157427273902µs}
|
|
563
547
|
example question: Which third parties are having the largest impact on my page performance?
|
|
564
548
|
- insight name: Cache
|
|
565
549
|
description: A long cache lifetime can speed up repeat visits to your page. [Learn more about caching](https://developer.chrome.com/docs/performance/insights/cache).
|
|
@@ -904,11 +888,11 @@ This is the bottom-up summary for the entire trace. Only the top 10 activities (
|
|
|
904
888
|
- self: 56 ms, total: 70 ms, source: Compile script
|
|
905
889
|
- self: 52 ms, total: 64 ms, source: setTimeout
|
|
906
890
|
- self: 38 ms, total: 40 ms, source: aC (url: https://s.yimg.com/aaq/f10d509c/d1irmdsmbztlvx.js, line: 0, column: 19068)
|
|
907
|
-
- self:
|
|
891
|
+
- self: 34 ms, total: 35 ms, source: Recalculate style (url: https://news.yahoo.com/, line: 57, column: 187957)
|
|
908
892
|
- self: 34 ms, total: 34 ms, source: Layout (url: https://news.yahoo.com/, line: 57, column: 187957)
|
|
909
893
|
- self: 31 ms, total: 34 ms, source: clearTimeout
|
|
910
894
|
- self: 30 ms, total: 53 ms, source: Parse HTML
|
|
911
|
-
- self:
|
|
895
|
+
- self: 29 ms, total: 259 ms, source: Function call
|
|
912
896
|
=== end content
|
|
913
897
|
|
|
914
898
|
Title: PerformanceTraceFormatter formatMainThreadBottomUpSummary multiple-navigations-render-blocking.json.gz
|
|
@@ -932,7 +916,7 @@ Title: PerformanceTraceFormatter formatThirdPartySummary yahoo-news.json.gz
|
|
|
932
916
|
Content:
|
|
933
917
|
# 3rd party summary
|
|
934
918
|
|
|
935
|
-
- name: Yahoo!, main thread time:
|
|
919
|
+
- name: Yahoo!, main thread time: 273 ms, network transfer size: 1.6 MB
|
|
936
920
|
- name: Google/Doubleclick Ads, main thread time: 53 ms, network transfer size: 258.6 kB
|
|
937
921
|
- name: Taboola, main thread time: 43 ms, network transfer size: 393.6 kB
|
|
938
922
|
- name: Google Tag Manager, main thread time: 19 ms, network transfer size: 123.8 kB
|