chrome-devtools-frontend 1.0.1515796 → 1.0.1516909
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/docs/contributing/infrastructure.md +131 -82
- package/front_end/Tests.js +3 -29
- package/front_end/core/common/Progress.ts +73 -55
- package/front_end/core/host/GdpClient.ts +1 -1
- package/front_end/core/host/UserMetrics.ts +5 -2
- package/front_end/core/protocol_client/InspectorBackend.ts +2 -0
- package/front_end/core/root/Runtime.ts +0 -1
- package/front_end/core/sdk/CSSMatchedStyles.ts +12 -10
- package/front_end/core/sdk/CSSModel.ts +1 -31
- package/front_end/core/sdk/CSSPropertyParserMatchers.ts +27 -7
- package/front_end/core/sdk/DebuggerModel.ts +1 -31
- package/front_end/core/sdk/EnhancedTracesParser.ts +81 -50
- package/front_end/core/sdk/NetworkManager.ts +1 -31
- package/front_end/core/sdk/NetworkRequest.ts +1 -31
- package/front_end/core/sdk/RehydratingConnection.snapshot.txt +1003 -0
- package/front_end/core/sdk/RehydratingConnection.ts +13 -18
- package/front_end/core/sdk/RehydratingObject.ts +8 -31
- package/front_end/core/sdk/RemoteObject.ts +1 -31
- package/front_end/core/sdk/ResourceTreeModel.ts +1 -31
- package/front_end/core/sdk/RuntimeModel.ts +1 -31
- package/front_end/core/sdk/ServiceWorkerManager.ts +1 -31
- package/front_end/core/sdk/SourceMap.ts +1 -31
- package/front_end/core/sdk/TraceObject.ts +8 -3
- package/front_end/entrypoints/main/MainImpl.ts +1 -3
- package/front_end/models/ai_assistance/AiHistoryStorage.ts +1 -3
- package/front_end/models/ai_assistance/ConversationHandler.ts +4 -6
- package/front_end/models/ai_assistance/agents/AiAgent.ts +4 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +110 -76
- package/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts +2 -2
- package/front_end/models/ai_assistance/agents/StylingAgent.ts +2 -2
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt +178 -85
- package/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts +308 -218
- package/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt +100 -100
- package/front_end/models/ai_assistance/data_formatters/UnitFormatters.ts +10 -1
- package/front_end/models/ai_assistance/performance/AIContext.ts +19 -21
- package/front_end/models/ai_code_completion/AiCodeCompletion.ts +24 -8
- package/front_end/models/badges/UserBadges.ts +38 -3
- package/front_end/models/bindings/ContentProviderBasedProject.ts +6 -4
- package/front_end/models/breakpoints/BreakpointManager.ts +3 -3
- package/front_end/models/formatter/FormatterWorkerPool.ts +3 -3
- package/front_end/models/har/Writer.ts +11 -11
- package/front_end/models/persistence/FileSystemWorkspaceBinding.ts +3 -3
- package/front_end/models/persistence/IsolatedFileSystem.ts +4 -4
- package/front_end/models/persistence/IsolatedFileSystemManager.ts +7 -7
- package/front_end/models/persistence/PersistenceImpl.ts +8 -8
- package/front_end/models/persistence/PlatformFileSystem.ts +1 -1
- package/front_end/models/trace/ModelImpl.ts +2 -16
- package/front_end/models/trace/Processor.ts +15 -9
- package/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +4 -4
- package/front_end/models/trace/handlers/FramesHandler.ts +2 -2
- package/front_end/models/trace/handlers/LayoutShiftsHandler.ts +7 -10
- package/front_end/models/trace/handlers/MetaHandler.ts +11 -9
- package/front_end/models/trace/handlers/ScreenshotsHandler.ts +1 -1
- package/front_end/models/trace/handlers/ScriptsHandler.ts +5 -5
- package/front_end/models/trace/handlers/UserInteractionsHandler.ts +2 -14
- package/front_end/models/trace/handlers/UserTimingsHandler.ts +3 -4
- package/front_end/models/trace/insights/CLSCulprits.ts +1 -1
- package/front_end/models/trace/insights/DocumentLatency.ts +3 -4
- package/front_end/models/trace/insights/DuplicatedJavaScript.ts +1 -1
- package/front_end/models/trace/insights/INPBreakdown.ts +1 -1
- package/front_end/models/trace/insights/ImageDelivery.ts +1 -1
- package/front_end/models/trace/insights/LCPBreakdown.ts +1 -1
- package/front_end/models/trace/insights/LCPDiscovery.ts +1 -1
- package/front_end/models/trace/insights/ModernHTTP.ts +1 -1
- package/front_end/models/trace/insights/NetworkDependencyTree.ts +1 -1
- package/front_end/models/trace/insights/RenderBlocking.ts +1 -1
- package/front_end/models/trace/insights/types.ts +2 -0
- package/front_end/models/trace/types/TraceEvents.ts +41 -64
- package/front_end/models/trace_source_maps_resolver/trace_source_maps_resolver.ts +1 -1
- package/front_end/panels/ai_assistance/AiAssistancePanel.ts +21 -99
- package/front_end/panels/application/ServiceWorkersView.ts +0 -1
- package/front_end/panels/browser_debugger/CategorizedBreakpointsSidebarPane.ts +2 -3
- package/front_end/panels/common/BadgeNotification.ts +46 -10
- package/front_end/panels/common/GdpSignUpDialog.ts +6 -3
- package/front_end/panels/console/ConsoleView.ts +23 -28
- package/front_end/panels/console/ConsoleViewport.ts +2 -2
- package/front_end/panels/console/consoleView.css +11 -1
- package/front_end/panels/coverage/CoverageView.ts +2 -2
- package/front_end/panels/elements/ComputedStyleWidget.ts +1 -2
- package/front_end/panels/elements/ElementsTreeOutline.ts +2 -2
- package/front_end/panels/elements/LayoutPane.ts +1 -1
- package/front_end/panels/elements/StyleEditorWidget.ts +8 -19
- package/front_end/panels/elements/StylePropertyTreeElement.ts +39 -25
- package/front_end/panels/elements/StylesSidebarPane.ts +2 -2
- package/front_end/panels/elements/stylePropertiesTreeOutline.css +4 -3
- package/front_end/panels/layer_viewer/Layers3DView.ts +2 -2
- package/front_end/panels/layers/LayerTreeModel.ts +3 -3
- package/front_end/panels/mobile_throttling/ThrottlingSettingsTab.ts +4 -4
- package/front_end/panels/network/NetworkLogView.ts +6 -2
- package/front_end/panels/network/NetworkLogViewColumns.ts +3 -3
- package/front_end/panels/network/NetworkSearchScope.ts +6 -6
- package/front_end/panels/search/SearchResultsPane.ts +32 -47
- package/front_end/panels/search/SearchView.ts +58 -80
- package/front_end/panels/settings/components/SyncSection.ts +7 -2
- package/front_end/panels/sources/OutlineQuickOpen.ts +3 -1
- package/front_end/panels/sources/SourcesSearchScope.ts +4 -4
- package/front_end/panels/sources/TabbedEditorContainer.ts +5 -5
- package/front_end/panels/timeline/TimelineFlameChartDataProvider.ts +10 -5
- package/front_end/panels/timeline/TimelineFlameChartView.ts +18 -15
- package/front_end/panels/timeline/TimelinePanel.ts +41 -22
- package/front_end/panels/timeline/TimelineUIUtils.ts +13 -8
- package/front_end/panels/timeline/TracingLayerTree.ts +4 -5
- package/front_end/panels/timeline/components/ExportTraceOptions.ts +37 -22
- package/front_end/panels/timeline/components/insights/BaseInsightComponent.ts +17 -7
- package/front_end/third_party/axe-core/README.chromium +1 -0
- package/front_end/third_party/codemirror/README.chromium +1 -0
- package/front_end/third_party/codemirror.next/README.chromium +1 -0
- package/front_end/third_party/csp_evaluator/README.chromium +1 -0
- package/front_end/third_party/diff/README.chromium +1 -0
- package/front_end/third_party/i18n/README.chromium +1 -0
- package/front_end/third_party/intl-messageformat/README.chromium +1 -0
- package/front_end/third_party/json5/README.chromium +1 -0
- package/front_end/third_party/legacy-javascript/README.chromium +1 -0
- package/front_end/third_party/lighthouse/README.chromium +1 -0
- package/front_end/third_party/lit/README.chromium +1 -0
- package/front_end/third_party/marked/README.chromium +1 -0
- package/front_end/third_party/puppeteer/README.chromium +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/core/Realm.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js +0 -20
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/injected/injected.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/Mutex.d.ts +2 -2
- package/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js +2 -23
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js +0 -20
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Accessibility.js.map +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/generated/version.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.d.ts +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js +1 -1
- package/front_end/third_party/puppeteer/package/lib/esm/puppeteer/revisions.js.map +1 -1
- package/front_end/third_party/puppeteer/package/package.json +1 -1
- package/front_end/third_party/puppeteer/package/src/cdp/Accessibility.ts +1 -21
- package/front_end/third_party/puppeteer/package/src/generated/version.ts +1 -1
- package/front_end/third_party/puppeteer/package/src/revisions.ts +1 -1
- package/front_end/third_party/puppeteer-replay/README.chromium +1 -0
- package/front_end/third_party/third-party-web/README.chromium +1 -0
- package/front_end/third_party/vscode.web-custom-data/README.chromium +1 -0
- package/front_end/third_party/wasmparser/README.chromium +1 -0
- package/front_end/third_party/web-vitals/README.chromium +1 -0
- package/front_end/ui/components/text_editor/config.ts +30 -1
- package/front_end/ui/components/tooltips/Tooltip.ts +18 -4
- package/front_end/ui/legacy/ContextMenu.ts +2 -2
- package/front_end/ui/legacy/GlassPane.ts +7 -3
- package/front_end/ui/legacy/ProgressIndicator.ts +29 -16
- package/front_end/ui/legacy/TabbedPane.ts +2 -2
- package/front_end/ui/legacy/Treeoutline.ts +10 -5
- package/front_end/ui/legacy/UIUtils.ts +42 -10
- package/front_end/ui/legacy/components/color_picker/Spectrum.ts +14 -14
- package/front_end/ui/legacy/components/data_grid/DataGrid.ts +6 -6
- package/front_end/ui/legacy/components/perf_ui/FlameChart.ts +3 -29
- package/front_end/ui/legacy/components/source_frame/SourceFrame.ts +14 -14
- package/front_end/ui/visual_logging/KnownContextValues.ts +7 -0
- package/inspector_overlay/highlight_common.ts +1 -27
- package/inspector_overlay/highlight_grid_common.ts +1 -27
- package/inspector_overlay/tool_highlight.ts +1 -27
- package/inspector_overlay/tool_persistent.ts +1 -27
- package/inspector_overlay/tool_source_order.ts +1 -27
- package/package.json +1 -1
@@ -0,0 +1,1003 @@
|
|
1
|
+
Title: RehydratingConnection emittance emits the expected CDP data
|
2
|
+
Content:
|
3
|
+
/* RehydratingConnection says: */
|
4
|
+
{
|
5
|
+
"method": "Target.targetCreated",
|
6
|
+
"params": {
|
7
|
+
"targetInfo": {
|
8
|
+
"targetId": "B5BBAB414EBCA379CE118DB9727521AC",
|
9
|
+
"type": "page",
|
10
|
+
"title": "https://www.paulirish.com/",
|
11
|
+
"url": "https://www.paulirish.com/",
|
12
|
+
"attached": false,
|
13
|
+
"canAccessOpener": false
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
/* RehydratingConnection says: */
|
19
|
+
{
|
20
|
+
"method": "Target.attachedToTarget",
|
21
|
+
"params": {
|
22
|
+
"sessionId": 1,
|
23
|
+
"waitingForDebugger": false,
|
24
|
+
"targetInfo": {
|
25
|
+
"targetId": "B5BBAB414EBCA379CE118DB9727521AC",
|
26
|
+
"type": "page",
|
27
|
+
"title": "https://www.paulirish.com/",
|
28
|
+
"url": "https://www.paulirish.com/",
|
29
|
+
"attached": true,
|
30
|
+
"canAccessOpener": false
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
34
|
+
|
35
|
+
/* fakeDevToolsFrontend says: */
|
36
|
+
{
|
37
|
+
"id": 1,
|
38
|
+
"sessionId": 1,
|
39
|
+
"method": "Runtime.enable"
|
40
|
+
}
|
41
|
+
|
42
|
+
/* RehydratingConnection says: */
|
43
|
+
{
|
44
|
+
"method": "Runtime.executionContextCreated",
|
45
|
+
"params": {
|
46
|
+
"context": {
|
47
|
+
"id": 5,
|
48
|
+
"origin": "https://www.paulirish.com",
|
49
|
+
"v8Context": "482502D992F82107999F832DED87C6A7",
|
50
|
+
"auxData": {
|
51
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
52
|
+
"isDefault": false,
|
53
|
+
"type": "isolated"
|
54
|
+
},
|
55
|
+
"isolate": "7348673817420155000",
|
56
|
+
"name": "https://www.paulirish.com",
|
57
|
+
"uniqueId": "482502D992F82107999F832DED87C6A7-7348673817420155000"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
"sessionId": 1
|
61
|
+
}
|
62
|
+
|
63
|
+
/* RehydratingConnection says: */
|
64
|
+
{
|
65
|
+
"method": "Runtime.executionContextCreated",
|
66
|
+
"params": {
|
67
|
+
"context": {
|
68
|
+
"id": 3,
|
69
|
+
"origin": "https://www.paulirish.com",
|
70
|
+
"v8Context": "67F1ED0CF3E300C68C64E0CC54A07DBA",
|
71
|
+
"auxData": {
|
72
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
73
|
+
"isDefault": true,
|
74
|
+
"type": "default"
|
75
|
+
},
|
76
|
+
"isolate": "7348673817420155000",
|
77
|
+
"name": "https://www.paulirish.com",
|
78
|
+
"uniqueId": "67F1ED0CF3E300C68C64E0CC54A07DBA-7348673817420155000"
|
79
|
+
}
|
80
|
+
},
|
81
|
+
"sessionId": 1
|
82
|
+
}
|
83
|
+
|
84
|
+
/* RehydratingConnection says: */
|
85
|
+
{
|
86
|
+
"method": "Runtime.executionContextCreated",
|
87
|
+
"params": {
|
88
|
+
"context": {
|
89
|
+
"id": 6,
|
90
|
+
"origin": "https://www.paulirish.com",
|
91
|
+
"v8Context": "C1C98363ADF682C9A999D3C3F6EE9079",
|
92
|
+
"auxData": {
|
93
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
94
|
+
"isDefault": false,
|
95
|
+
"type": "isolated"
|
96
|
+
},
|
97
|
+
"isolate": "7348673817420155000",
|
98
|
+
"name": "https://www.paulirish.com",
|
99
|
+
"uniqueId": "C1C98363ADF682C9A999D3C3F6EE9079-7348673817420155000"
|
100
|
+
}
|
101
|
+
},
|
102
|
+
"sessionId": 1
|
103
|
+
}
|
104
|
+
|
105
|
+
/* RehydratingConnection says: */
|
106
|
+
{
|
107
|
+
"method": "Runtime.executionContextCreated",
|
108
|
+
"params": {
|
109
|
+
"context": {
|
110
|
+
"id": 1,
|
111
|
+
"origin": "",
|
112
|
+
"v8Context": "",
|
113
|
+
"name": "",
|
114
|
+
"auxData": {
|
115
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
116
|
+
"isDefault": false,
|
117
|
+
"type": "type"
|
118
|
+
},
|
119
|
+
"isolate": "7348673817420155000",
|
120
|
+
"uniqueId": "B5BBAB414EBCA379CE118DB9727521AC-7348673817420155000"
|
121
|
+
}
|
122
|
+
},
|
123
|
+
"sessionId": 1
|
124
|
+
}
|
125
|
+
|
126
|
+
/* RehydratingConnection says: */
|
127
|
+
{
|
128
|
+
"id": 1,
|
129
|
+
"result": {},
|
130
|
+
"sessionId": 1
|
131
|
+
}
|
132
|
+
|
133
|
+
/* fakeDevToolsFrontend says: */
|
134
|
+
{
|
135
|
+
"id": 2,
|
136
|
+
"sessionId": 1,
|
137
|
+
"method": "Debugger.enable"
|
138
|
+
}
|
139
|
+
|
140
|
+
/* RehydratingConnection says: */
|
141
|
+
{
|
142
|
+
"method": "Debugger.scriptParsed",
|
143
|
+
"params": {
|
144
|
+
"scriptId": "5",
|
145
|
+
"isolate": "7348673817420155000",
|
146
|
+
"buildId": "",
|
147
|
+
"executionContextId": 1,
|
148
|
+
"startLine": 0,
|
149
|
+
"startColumn": 0,
|
150
|
+
"endLine": 0,
|
151
|
+
"endColumn": 0,
|
152
|
+
"hash": "",
|
153
|
+
"isModule": false,
|
154
|
+
"url": "",
|
155
|
+
"hasSourceURL": false,
|
156
|
+
"sourceURL": "",
|
157
|
+
"pid": 97964,
|
158
|
+
"sourceText": "(function () {\n 'us…",
|
159
|
+
"length": 43377
|
160
|
+
},
|
161
|
+
"sessionId": 1
|
162
|
+
}
|
163
|
+
|
164
|
+
/* fakeDevToolsFrontend says: */
|
165
|
+
{
|
166
|
+
"id": 3,
|
167
|
+
"sessionId": 1,
|
168
|
+
"method": "Debugger.getScriptSource",
|
169
|
+
"params": {
|
170
|
+
"scriptId": "5"
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
/* RehydratingConnection says: */
|
175
|
+
{
|
176
|
+
"id": 3,
|
177
|
+
"result": {
|
178
|
+
"scriptSource": "(function () {\n 'us…"
|
179
|
+
},
|
180
|
+
"sessionId": 1
|
181
|
+
}
|
182
|
+
|
183
|
+
/* RehydratingConnection says: */
|
184
|
+
{
|
185
|
+
"method": "Debugger.scriptParsed",
|
186
|
+
"params": {
|
187
|
+
"scriptId": "7",
|
188
|
+
"isolate": "7348673817420155000",
|
189
|
+
"buildId": "",
|
190
|
+
"executionContextId": 5,
|
191
|
+
"startLine": 0,
|
192
|
+
"startColumn": 0,
|
193
|
+
"endLine": 0,
|
194
|
+
"endColumn": 0,
|
195
|
+
"hash": "",
|
196
|
+
"isModule": false,
|
197
|
+
"url": "chrome-extension://mkmaajnfmpmpebdcpfnjbkgaloeidlfa/content_script_compiled.js",
|
198
|
+
"hasSourceURL": false,
|
199
|
+
"sourceURL": "",
|
200
|
+
"pid": 97964,
|
201
|
+
"executionContextAuxData": {
|
202
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
203
|
+
"isDefault": false,
|
204
|
+
"type": "isolated"
|
205
|
+
}
|
206
|
+
},
|
207
|
+
"sessionId": 1
|
208
|
+
}
|
209
|
+
|
210
|
+
/* fakeDevToolsFrontend says: */
|
211
|
+
{
|
212
|
+
"id": 4,
|
213
|
+
"sessionId": 1,
|
214
|
+
"method": "Debugger.getScriptSource",
|
215
|
+
"params": {
|
216
|
+
"scriptId": "7"
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
/* RehydratingConnection says: */
|
221
|
+
{
|
222
|
+
"id": 4,
|
223
|
+
"result": {
|
224
|
+
"scriptSource": "No source text avail…"
|
225
|
+
},
|
226
|
+
"sessionId": 1
|
227
|
+
}
|
228
|
+
|
229
|
+
/* RehydratingConnection says: */
|
230
|
+
{
|
231
|
+
"method": "Debugger.scriptParsed",
|
232
|
+
"params": {
|
233
|
+
"scriptId": "8",
|
234
|
+
"isolate": "7348673817420155000",
|
235
|
+
"buildId": "",
|
236
|
+
"executionContextId": 3,
|
237
|
+
"startLine": 0,
|
238
|
+
"startColumn": 0,
|
239
|
+
"endLine": 0,
|
240
|
+
"endColumn": 0,
|
241
|
+
"hash": "",
|
242
|
+
"isModule": false,
|
243
|
+
"url": "https://www.paulirish.com/",
|
244
|
+
"hasSourceURL": false,
|
245
|
+
"sourceURL": "",
|
246
|
+
"pid": 97964,
|
247
|
+
"sourceText": "\nvar firebaseConfig …",
|
248
|
+
"length": 699,
|
249
|
+
"executionContextAuxData": {
|
250
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
251
|
+
"isDefault": true,
|
252
|
+
"type": "default"
|
253
|
+
}
|
254
|
+
},
|
255
|
+
"sessionId": 1
|
256
|
+
}
|
257
|
+
|
258
|
+
/* fakeDevToolsFrontend says: */
|
259
|
+
{
|
260
|
+
"id": 5,
|
261
|
+
"sessionId": 1,
|
262
|
+
"method": "Debugger.getScriptSource",
|
263
|
+
"params": {
|
264
|
+
"scriptId": "8"
|
265
|
+
}
|
266
|
+
}
|
267
|
+
|
268
|
+
/* RehydratingConnection says: */
|
269
|
+
{
|
270
|
+
"id": 5,
|
271
|
+
"result": {
|
272
|
+
"scriptSource": "\nvar firebaseConfig …"
|
273
|
+
},
|
274
|
+
"sessionId": 1
|
275
|
+
}
|
276
|
+
|
277
|
+
/* RehydratingConnection says: */
|
278
|
+
{
|
279
|
+
"method": "Debugger.scriptParsed",
|
280
|
+
"params": {
|
281
|
+
"scriptId": "9",
|
282
|
+
"isolate": "7348673817420155000",
|
283
|
+
"buildId": "",
|
284
|
+
"executionContextId": 3,
|
285
|
+
"startLine": 0,
|
286
|
+
"startColumn": 0,
|
287
|
+
"endLine": 0,
|
288
|
+
"endColumn": 0,
|
289
|
+
"hash": "",
|
290
|
+
"isModule": false,
|
291
|
+
"url": "https://www.paulirish.com/",
|
292
|
+
"hasSourceURL": false,
|
293
|
+
"sourceURL": "",
|
294
|
+
"pid": 97964,
|
295
|
+
"sourceText": "\\n window.dataLayer…",
|
296
|
+
"length": 152,
|
297
|
+
"executionContextAuxData": {
|
298
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
299
|
+
"isDefault": true,
|
300
|
+
"type": "default"
|
301
|
+
}
|
302
|
+
},
|
303
|
+
"sessionId": 1
|
304
|
+
}
|
305
|
+
|
306
|
+
/* fakeDevToolsFrontend says: */
|
307
|
+
{
|
308
|
+
"id": 6,
|
309
|
+
"sessionId": 1,
|
310
|
+
"method": "Debugger.getScriptSource",
|
311
|
+
"params": {
|
312
|
+
"scriptId": "9"
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
/* RehydratingConnection says: */
|
317
|
+
{
|
318
|
+
"id": 6,
|
319
|
+
"result": {
|
320
|
+
"scriptSource": "\\n window.dataLayer…"
|
321
|
+
},
|
322
|
+
"sessionId": 1
|
323
|
+
}
|
324
|
+
|
325
|
+
/* RehydratingConnection says: */
|
326
|
+
{
|
327
|
+
"method": "Debugger.scriptParsed",
|
328
|
+
"params": {
|
329
|
+
"scriptId": "10",
|
330
|
+
"isolate": "7348673817420155000",
|
331
|
+
"buildId": "",
|
332
|
+
"executionContextId": 3,
|
333
|
+
"startLine": 0,
|
334
|
+
"startColumn": 0,
|
335
|
+
"endLine": 0,
|
336
|
+
"endColumn": 0,
|
337
|
+
"hash": "",
|
338
|
+
"isModule": false,
|
339
|
+
"url": "https://www.paulirish.com/",
|
340
|
+
"hasSourceURL": false,
|
341
|
+
"sourceURL": "",
|
342
|
+
"pid": 97964,
|
343
|
+
"sourceText": " …",
|
344
|
+
"length": 1,
|
345
|
+
"executionContextAuxData": {
|
346
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
347
|
+
"isDefault": true,
|
348
|
+
"type": "default"
|
349
|
+
}
|
350
|
+
},
|
351
|
+
"sessionId": 1
|
352
|
+
}
|
353
|
+
|
354
|
+
/* fakeDevToolsFrontend says: */
|
355
|
+
{
|
356
|
+
"id": 7,
|
357
|
+
"sessionId": 1,
|
358
|
+
"method": "Debugger.getScriptSource",
|
359
|
+
"params": {
|
360
|
+
"scriptId": "10"
|
361
|
+
}
|
362
|
+
}
|
363
|
+
|
364
|
+
/* RehydratingConnection says: */
|
365
|
+
{
|
366
|
+
"id": 7,
|
367
|
+
"result": {
|
368
|
+
"scriptSource": " …"
|
369
|
+
},
|
370
|
+
"sessionId": 1
|
371
|
+
}
|
372
|
+
|
373
|
+
/* RehydratingConnection says: */
|
374
|
+
{
|
375
|
+
"method": "Debugger.scriptParsed",
|
376
|
+
"params": {
|
377
|
+
"scriptId": "11",
|
378
|
+
"isolate": "7348673817420155000",
|
379
|
+
"buildId": "",
|
380
|
+
"executionContextId": 3,
|
381
|
+
"startLine": 0,
|
382
|
+
"startColumn": 0,
|
383
|
+
"endLine": 0,
|
384
|
+
"endColumn": 0,
|
385
|
+
"hash": "",
|
386
|
+
"isModule": false,
|
387
|
+
"url": "https://www.paulirish.com/",
|
388
|
+
"hasSourceURL": false,
|
389
|
+
"sourceURL": "",
|
390
|
+
"pid": 97964,
|
391
|
+
"sourceText": "\\n\\tperformance.mark…",
|
392
|
+
"length": 31,
|
393
|
+
"executionContextAuxData": {
|
394
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
395
|
+
"isDefault": true,
|
396
|
+
"type": "default"
|
397
|
+
}
|
398
|
+
},
|
399
|
+
"sessionId": 1
|
400
|
+
}
|
401
|
+
|
402
|
+
/* fakeDevToolsFrontend says: */
|
403
|
+
{
|
404
|
+
"id": 8,
|
405
|
+
"sessionId": 1,
|
406
|
+
"method": "Debugger.getScriptSource",
|
407
|
+
"params": {
|
408
|
+
"scriptId": "11"
|
409
|
+
}
|
410
|
+
}
|
411
|
+
|
412
|
+
/* RehydratingConnection says: */
|
413
|
+
{
|
414
|
+
"id": 8,
|
415
|
+
"result": {
|
416
|
+
"scriptSource": "\\n\\tperformance.mark…"
|
417
|
+
},
|
418
|
+
"sessionId": 1
|
419
|
+
}
|
420
|
+
|
421
|
+
/* RehydratingConnection says: */
|
422
|
+
{
|
423
|
+
"method": "Debugger.scriptParsed",
|
424
|
+
"params": {
|
425
|
+
"scriptId": "12",
|
426
|
+
"isolate": "7348673817420155000",
|
427
|
+
"buildId": "",
|
428
|
+
"executionContextId": 3,
|
429
|
+
"startLine": 0,
|
430
|
+
"startColumn": 0,
|
431
|
+
"endLine": 0,
|
432
|
+
"endColumn": 0,
|
433
|
+
"hash": "",
|
434
|
+
"isModule": false,
|
435
|
+
"url": "https://www.paulirish.com/javascripts/modernizr-2.0.js",
|
436
|
+
"hasSourceURL": false,
|
437
|
+
"sourceURL": "",
|
438
|
+
"pid": 97964,
|
439
|
+
"sourceText": "/* Modernizr 2.0.4 (…",
|
440
|
+
"length": 9946,
|
441
|
+
"executionContextAuxData": {
|
442
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
443
|
+
"isDefault": true,
|
444
|
+
"type": "default"
|
445
|
+
}
|
446
|
+
},
|
447
|
+
"sessionId": 1
|
448
|
+
}
|
449
|
+
|
450
|
+
/* fakeDevToolsFrontend says: */
|
451
|
+
{
|
452
|
+
"id": 9,
|
453
|
+
"sessionId": 1,
|
454
|
+
"method": "Debugger.getScriptSource",
|
455
|
+
"params": {
|
456
|
+
"scriptId": "12"
|
457
|
+
}
|
458
|
+
}
|
459
|
+
|
460
|
+
/* RehydratingConnection says: */
|
461
|
+
{
|
462
|
+
"id": 9,
|
463
|
+
"result": {
|
464
|
+
"scriptSource": "/* Modernizr 2.0.4 (…"
|
465
|
+
},
|
466
|
+
"sessionId": 1
|
467
|
+
}
|
468
|
+
|
469
|
+
/* RehydratingConnection says: */
|
470
|
+
{
|
471
|
+
"method": "Debugger.scriptParsed",
|
472
|
+
"params": {
|
473
|
+
"scriptId": "15",
|
474
|
+
"isolate": "7348673817420155000",
|
475
|
+
"buildId": "",
|
476
|
+
"executionContextId": 3,
|
477
|
+
"startLine": 0,
|
478
|
+
"startColumn": 0,
|
479
|
+
"endLine": 0,
|
480
|
+
"endColumn": 0,
|
481
|
+
"hash": "",
|
482
|
+
"isModule": false,
|
483
|
+
"url": "https://www.paulirish.com/javascripts/firebase-performance-standalone.js",
|
484
|
+
"hasSourceURL": false,
|
485
|
+
"sourceURL": "",
|
486
|
+
"sourceMapURL": "firebase-performance-standalone.js.map",
|
487
|
+
"pid": 97964,
|
488
|
+
"sourceText": "!function(e,t){\"obje…",
|
489
|
+
"length": 48248,
|
490
|
+
"executionContextAuxData": {
|
491
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
492
|
+
"isDefault": true,
|
493
|
+
"type": "default"
|
494
|
+
}
|
495
|
+
},
|
496
|
+
"sessionId": 1
|
497
|
+
}
|
498
|
+
|
499
|
+
/* fakeDevToolsFrontend says: */
|
500
|
+
{
|
501
|
+
"id": 10,
|
502
|
+
"sessionId": 1,
|
503
|
+
"method": "Debugger.getScriptSource",
|
504
|
+
"params": {
|
505
|
+
"scriptId": "15"
|
506
|
+
}
|
507
|
+
}
|
508
|
+
|
509
|
+
/* RehydratingConnection says: */
|
510
|
+
{
|
511
|
+
"id": 10,
|
512
|
+
"result": {
|
513
|
+
"scriptSource": "!function(e,t){\"obje…"
|
514
|
+
},
|
515
|
+
"sessionId": 1
|
516
|
+
}
|
517
|
+
|
518
|
+
/* RehydratingConnection says: */
|
519
|
+
{
|
520
|
+
"method": "Debugger.scriptParsed",
|
521
|
+
"params": {
|
522
|
+
"scriptId": "13",
|
523
|
+
"isolate": "7348673817420155000",
|
524
|
+
"buildId": "",
|
525
|
+
"executionContextId": 3,
|
526
|
+
"startLine": 0,
|
527
|
+
"startColumn": 0,
|
528
|
+
"endLine": 0,
|
529
|
+
"endColumn": 0,
|
530
|
+
"hash": "",
|
531
|
+
"isModule": false,
|
532
|
+
"url": "https://www.paulirish.com/javascripts/ender.js",
|
533
|
+
"hasSourceURL": false,
|
534
|
+
"sourceURL": "",
|
535
|
+
"pid": 97964,
|
536
|
+
"sourceText": "/*!\n * ============…",
|
537
|
+
"length": 56221,
|
538
|
+
"executionContextAuxData": {
|
539
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
540
|
+
"isDefault": true,
|
541
|
+
"type": "default"
|
542
|
+
}
|
543
|
+
},
|
544
|
+
"sessionId": 1
|
545
|
+
}
|
546
|
+
|
547
|
+
/* fakeDevToolsFrontend says: */
|
548
|
+
{
|
549
|
+
"id": 11,
|
550
|
+
"sessionId": 1,
|
551
|
+
"method": "Debugger.getScriptSource",
|
552
|
+
"params": {
|
553
|
+
"scriptId": "13"
|
554
|
+
}
|
555
|
+
}
|
556
|
+
|
557
|
+
/* RehydratingConnection says: */
|
558
|
+
{
|
559
|
+
"id": 11,
|
560
|
+
"result": {
|
561
|
+
"scriptSource": "/*!\n * ============…"
|
562
|
+
},
|
563
|
+
"sessionId": 1
|
564
|
+
}
|
565
|
+
|
566
|
+
/* RehydratingConnection says: */
|
567
|
+
{
|
568
|
+
"method": "Debugger.scriptParsed",
|
569
|
+
"params": {
|
570
|
+
"scriptId": "14",
|
571
|
+
"isolate": "7348673817420155000",
|
572
|
+
"buildId": "",
|
573
|
+
"executionContextId": 3,
|
574
|
+
"startLine": 0,
|
575
|
+
"startColumn": 0,
|
576
|
+
"endLine": 0,
|
577
|
+
"endColumn": 0,
|
578
|
+
"hash": "",
|
579
|
+
"isModule": false,
|
580
|
+
"url": "https://www.paulirish.com/javascripts/octopress.js",
|
581
|
+
"hasSourceURL": false,
|
582
|
+
"sourceURL": "",
|
583
|
+
"pid": 97964,
|
584
|
+
"sourceText": "function getNav() {\n…",
|
585
|
+
"length": 8829,
|
586
|
+
"executionContextAuxData": {
|
587
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
588
|
+
"isDefault": true,
|
589
|
+
"type": "default"
|
590
|
+
}
|
591
|
+
},
|
592
|
+
"sessionId": 1
|
593
|
+
}
|
594
|
+
|
595
|
+
/* fakeDevToolsFrontend says: */
|
596
|
+
{
|
597
|
+
"id": 12,
|
598
|
+
"sessionId": 1,
|
599
|
+
"method": "Debugger.getScriptSource",
|
600
|
+
"params": {
|
601
|
+
"scriptId": "14"
|
602
|
+
}
|
603
|
+
}
|
604
|
+
|
605
|
+
/* RehydratingConnection says: */
|
606
|
+
{
|
607
|
+
"id": 12,
|
608
|
+
"result": {
|
609
|
+
"scriptSource": "function getNav() {\n…"
|
610
|
+
},
|
611
|
+
"sessionId": 1
|
612
|
+
}
|
613
|
+
|
614
|
+
/* RehydratingConnection says: */
|
615
|
+
{
|
616
|
+
"method": "Debugger.scriptParsed",
|
617
|
+
"params": {
|
618
|
+
"scriptId": "16",
|
619
|
+
"isolate": "7348673817420155000",
|
620
|
+
"buildId": "",
|
621
|
+
"executionContextId": 3,
|
622
|
+
"startLine": 0,
|
623
|
+
"startColumn": 0,
|
624
|
+
"endLine": 0,
|
625
|
+
"endColumn": 0,
|
626
|
+
"hash": "",
|
627
|
+
"isModule": false,
|
628
|
+
"url": "https://www.paulirish.com/",
|
629
|
+
"hasSourceURL": false,
|
630
|
+
"sourceURL": "",
|
631
|
+
"pid": 97964,
|
632
|
+
"sourceText": "\nperformance.mark('e…",
|
633
|
+
"length": 755,
|
634
|
+
"executionContextAuxData": {
|
635
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
636
|
+
"isDefault": true,
|
637
|
+
"type": "default"
|
638
|
+
}
|
639
|
+
},
|
640
|
+
"sessionId": 1
|
641
|
+
}
|
642
|
+
|
643
|
+
/* fakeDevToolsFrontend says: */
|
644
|
+
{
|
645
|
+
"id": 13,
|
646
|
+
"sessionId": 1,
|
647
|
+
"method": "Debugger.getScriptSource",
|
648
|
+
"params": {
|
649
|
+
"scriptId": "16"
|
650
|
+
}
|
651
|
+
}
|
652
|
+
|
653
|
+
/* RehydratingConnection says: */
|
654
|
+
{
|
655
|
+
"id": 13,
|
656
|
+
"result": {
|
657
|
+
"scriptSource": "\nperformance.mark('e…"
|
658
|
+
},
|
659
|
+
"sessionId": 1
|
660
|
+
}
|
661
|
+
|
662
|
+
/* RehydratingConnection says: */
|
663
|
+
{
|
664
|
+
"method": "Debugger.scriptParsed",
|
665
|
+
"params": {
|
666
|
+
"scriptId": "17",
|
667
|
+
"isolate": "7348673817420155000",
|
668
|
+
"buildId": "",
|
669
|
+
"executionContextId": 3,
|
670
|
+
"startLine": 0,
|
671
|
+
"startColumn": 0,
|
672
|
+
"endLine": 0,
|
673
|
+
"endColumn": 0,
|
674
|
+
"hash": "",
|
675
|
+
"isModule": false,
|
676
|
+
"url": "https://www.paulirish.com/",
|
677
|
+
"hasSourceURL": false,
|
678
|
+
"sourceURL": "",
|
679
|
+
"pid": 97964,
|
680
|
+
"sourceText": "\\n (function(i,s,o,…",
|
681
|
+
"length": 395,
|
682
|
+
"executionContextAuxData": {
|
683
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
684
|
+
"isDefault": true,
|
685
|
+
"type": "default"
|
686
|
+
}
|
687
|
+
},
|
688
|
+
"sessionId": 1
|
689
|
+
}
|
690
|
+
|
691
|
+
/* fakeDevToolsFrontend says: */
|
692
|
+
{
|
693
|
+
"id": 14,
|
694
|
+
"sessionId": 1,
|
695
|
+
"method": "Debugger.getScriptSource",
|
696
|
+
"params": {
|
697
|
+
"scriptId": "17"
|
698
|
+
}
|
699
|
+
}
|
700
|
+
|
701
|
+
/* RehydratingConnection says: */
|
702
|
+
{
|
703
|
+
"id": 14,
|
704
|
+
"result": {
|
705
|
+
"scriptSource": "\\n (function(i,s,o,…"
|
706
|
+
},
|
707
|
+
"sessionId": 1
|
708
|
+
}
|
709
|
+
|
710
|
+
/* RehydratingConnection says: */
|
711
|
+
{
|
712
|
+
"method": "Debugger.scriptParsed",
|
713
|
+
"params": {
|
714
|
+
"scriptId": "18",
|
715
|
+
"isolate": "7348673817420155000",
|
716
|
+
"buildId": "",
|
717
|
+
"executionContextId": 3,
|
718
|
+
"startLine": 0,
|
719
|
+
"startColumn": 0,
|
720
|
+
"endLine": 0,
|
721
|
+
"endColumn": 0,
|
722
|
+
"hash": "",
|
723
|
+
"isModule": false,
|
724
|
+
"url": "https://www.paulirish.com/",
|
725
|
+
"hasSourceURL": false,
|
726
|
+
"sourceURL": "",
|
727
|
+
"pid": 97964,
|
728
|
+
"sourceText": "\\n var disqus_s…",
|
729
|
+
"length": 424,
|
730
|
+
"executionContextAuxData": {
|
731
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
732
|
+
"isDefault": true,
|
733
|
+
"type": "default"
|
734
|
+
}
|
735
|
+
},
|
736
|
+
"sessionId": 1
|
737
|
+
}
|
738
|
+
|
739
|
+
/* fakeDevToolsFrontend says: */
|
740
|
+
{
|
741
|
+
"id": 15,
|
742
|
+
"sessionId": 1,
|
743
|
+
"method": "Debugger.getScriptSource",
|
744
|
+
"params": {
|
745
|
+
"scriptId": "18"
|
746
|
+
}
|
747
|
+
}
|
748
|
+
|
749
|
+
/* RehydratingConnection says: */
|
750
|
+
{
|
751
|
+
"id": 15,
|
752
|
+
"result": {
|
753
|
+
"scriptSource": "\\n var disqus_s…"
|
754
|
+
},
|
755
|
+
"sessionId": 1
|
756
|
+
}
|
757
|
+
|
758
|
+
/* RehydratingConnection says: */
|
759
|
+
{
|
760
|
+
"method": "Debugger.scriptParsed",
|
761
|
+
"params": {
|
762
|
+
"scriptId": "20",
|
763
|
+
"isolate": "7348673817420155000",
|
764
|
+
"buildId": "",
|
765
|
+
"executionContextId": 3,
|
766
|
+
"startLine": 0,
|
767
|
+
"startColumn": 0,
|
768
|
+
"endLine": 0,
|
769
|
+
"endColumn": 0,
|
770
|
+
"hash": "",
|
771
|
+
"isModule": false,
|
772
|
+
"url": "https://paulirish.disqus.com/count.js",
|
773
|
+
"hasSourceURL": false,
|
774
|
+
"sourceURL": "",
|
775
|
+
"pid": 97964,
|
776
|
+
"sourceText": "var DISQUSWIDGETS,di…",
|
777
|
+
"length": 1517,
|
778
|
+
"executionContextAuxData": {
|
779
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
780
|
+
"isDefault": true,
|
781
|
+
"type": "default"
|
782
|
+
}
|
783
|
+
},
|
784
|
+
"sessionId": 1
|
785
|
+
}
|
786
|
+
|
787
|
+
/* fakeDevToolsFrontend says: */
|
788
|
+
{
|
789
|
+
"id": 16,
|
790
|
+
"sessionId": 1,
|
791
|
+
"method": "Debugger.getScriptSource",
|
792
|
+
"params": {
|
793
|
+
"scriptId": "20"
|
794
|
+
}
|
795
|
+
}
|
796
|
+
|
797
|
+
/* RehydratingConnection says: */
|
798
|
+
{
|
799
|
+
"id": 16,
|
800
|
+
"result": {
|
801
|
+
"scriptSource": "var DISQUSWIDGETS,di…"
|
802
|
+
},
|
803
|
+
"sessionId": 1
|
804
|
+
}
|
805
|
+
|
806
|
+
/* RehydratingConnection says: */
|
807
|
+
{
|
808
|
+
"method": "Debugger.scriptParsed",
|
809
|
+
"params": {
|
810
|
+
"scriptId": "21",
|
811
|
+
"isolate": "7348673817420155000",
|
812
|
+
"buildId": "",
|
813
|
+
"executionContextId": 6,
|
814
|
+
"startLine": 0,
|
815
|
+
"startColumn": 0,
|
816
|
+
"endLine": 0,
|
817
|
+
"endColumn": 0,
|
818
|
+
"hash": "",
|
819
|
+
"isModule": false,
|
820
|
+
"url": "chrome-extension://pmhkaepabdniocnppdkfgifgonahhpdi/polyfills/webcomponents-ce.js",
|
821
|
+
"hasSourceURL": false,
|
822
|
+
"sourceURL": "",
|
823
|
+
"sourceMapURL": "blaze-out/k8-fastbuild-ST-9b8c98789bde/bin/third_party/javascript/polymer/v2/webcomponentsjs/webcomponents-ce.js.sourcemap",
|
824
|
+
"pid": 97964,
|
825
|
+
"executionContextAuxData": {
|
826
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
827
|
+
"isDefault": false,
|
828
|
+
"type": "isolated"
|
829
|
+
}
|
830
|
+
},
|
831
|
+
"sessionId": 1
|
832
|
+
}
|
833
|
+
|
834
|
+
/* fakeDevToolsFrontend says: */
|
835
|
+
{
|
836
|
+
"id": 17,
|
837
|
+
"sessionId": 1,
|
838
|
+
"method": "Debugger.getScriptSource",
|
839
|
+
"params": {
|
840
|
+
"scriptId": "21"
|
841
|
+
}
|
842
|
+
}
|
843
|
+
|
844
|
+
/* RehydratingConnection says: */
|
845
|
+
{
|
846
|
+
"id": 17,
|
847
|
+
"result": {
|
848
|
+
"scriptSource": "No source text avail…"
|
849
|
+
},
|
850
|
+
"sessionId": 1
|
851
|
+
}
|
852
|
+
|
853
|
+
/* RehydratingConnection says: */
|
854
|
+
{
|
855
|
+
"method": "Debugger.scriptParsed",
|
856
|
+
"params": {
|
857
|
+
"scriptId": "22",
|
858
|
+
"isolate": "7348673817420155000",
|
859
|
+
"buildId": "",
|
860
|
+
"executionContextId": 6,
|
861
|
+
"startLine": 0,
|
862
|
+
"startColumn": 0,
|
863
|
+
"endLine": 0,
|
864
|
+
"endColumn": 0,
|
865
|
+
"hash": "",
|
866
|
+
"isModule": false,
|
867
|
+
"url": "chrome-extension://pmhkaepabdniocnppdkfgifgonahhpdi/third_party_upload_content_script.js",
|
868
|
+
"hasSourceURL": false,
|
869
|
+
"sourceURL": "",
|
870
|
+
"pid": 97964,
|
871
|
+
"executionContextAuxData": {
|
872
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
873
|
+
"isDefault": false,
|
874
|
+
"type": "isolated"
|
875
|
+
}
|
876
|
+
},
|
877
|
+
"sessionId": 1
|
878
|
+
}
|
879
|
+
|
880
|
+
/* fakeDevToolsFrontend says: */
|
881
|
+
{
|
882
|
+
"id": 18,
|
883
|
+
"sessionId": 1,
|
884
|
+
"method": "Debugger.getScriptSource",
|
885
|
+
"params": {
|
886
|
+
"scriptId": "22"
|
887
|
+
}
|
888
|
+
}
|
889
|
+
|
890
|
+
/* RehydratingConnection says: */
|
891
|
+
{
|
892
|
+
"id": 18,
|
893
|
+
"result": {
|
894
|
+
"scriptSource": "No source text avail…"
|
895
|
+
},
|
896
|
+
"sessionId": 1
|
897
|
+
}
|
898
|
+
|
899
|
+
/* RehydratingConnection says: */
|
900
|
+
{
|
901
|
+
"method": "Debugger.scriptParsed",
|
902
|
+
"params": {
|
903
|
+
"scriptId": "19",
|
904
|
+
"isolate": "7348673817420155000",
|
905
|
+
"buildId": "",
|
906
|
+
"executionContextId": 3,
|
907
|
+
"startLine": 0,
|
908
|
+
"startColumn": 0,
|
909
|
+
"endLine": 0,
|
910
|
+
"endColumn": 0,
|
911
|
+
"hash": "",
|
912
|
+
"isModule": false,
|
913
|
+
"url": "https://www.googletagmanager.com/gtag/js?id=G-PGXNGYWP8E",
|
914
|
+
"hasSourceURL": false,
|
915
|
+
"sourceURL": "",
|
916
|
+
"pid": 97964,
|
917
|
+
"sourceText": "\n// Copyright 2012 G…",
|
918
|
+
"length": 390251,
|
919
|
+
"executionContextAuxData": {
|
920
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
921
|
+
"isDefault": true,
|
922
|
+
"type": "default"
|
923
|
+
}
|
924
|
+
},
|
925
|
+
"sessionId": 1
|
926
|
+
}
|
927
|
+
|
928
|
+
/* fakeDevToolsFrontend says: */
|
929
|
+
{
|
930
|
+
"id": 19,
|
931
|
+
"sessionId": 1,
|
932
|
+
"method": "Debugger.getScriptSource",
|
933
|
+
"params": {
|
934
|
+
"scriptId": "19"
|
935
|
+
}
|
936
|
+
}
|
937
|
+
|
938
|
+
/* RehydratingConnection says: */
|
939
|
+
{
|
940
|
+
"id": 19,
|
941
|
+
"result": {
|
942
|
+
"scriptSource": "\n// Copyright 2012 G…"
|
943
|
+
},
|
944
|
+
"sessionId": 1
|
945
|
+
}
|
946
|
+
|
947
|
+
/* RehydratingConnection says: */
|
948
|
+
{
|
949
|
+
"method": "Debugger.scriptParsed",
|
950
|
+
"params": {
|
951
|
+
"scriptId": "23",
|
952
|
+
"isolate": "7348673817420155000",
|
953
|
+
"buildId": "",
|
954
|
+
"executionContextId": 3,
|
955
|
+
"startLine": 0,
|
956
|
+
"startColumn": 0,
|
957
|
+
"endLine": 0,
|
958
|
+
"endColumn": 0,
|
959
|
+
"hash": "",
|
960
|
+
"isModule": false,
|
961
|
+
"url": "https://www.google-analytics.com/analytics.js",
|
962
|
+
"hasSourceURL": false,
|
963
|
+
"sourceURL": "",
|
964
|
+
"pid": 97964,
|
965
|
+
"sourceText": "(function(){var aa=f…",
|
966
|
+
"length": 52310,
|
967
|
+
"executionContextAuxData": {
|
968
|
+
"frameId": "B5BBAB414EBCA379CE118DB9727521AC",
|
969
|
+
"isDefault": true,
|
970
|
+
"type": "default"
|
971
|
+
}
|
972
|
+
},
|
973
|
+
"sessionId": 1
|
974
|
+
}
|
975
|
+
|
976
|
+
/* fakeDevToolsFrontend says: */
|
977
|
+
{
|
978
|
+
"id": 20,
|
979
|
+
"sessionId": 1,
|
980
|
+
"method": "Debugger.getScriptSource",
|
981
|
+
"params": {
|
982
|
+
"scriptId": "23"
|
983
|
+
}
|
984
|
+
}
|
985
|
+
|
986
|
+
/* RehydratingConnection says: */
|
987
|
+
{
|
988
|
+
"id": 20,
|
989
|
+
"result": {
|
990
|
+
"scriptSource": "(function(){var aa=f…"
|
991
|
+
},
|
992
|
+
"sessionId": 1
|
993
|
+
}
|
994
|
+
|
995
|
+
/* RehydratingConnection says: */
|
996
|
+
{
|
997
|
+
"id": 2,
|
998
|
+
"result": {
|
999
|
+
"debuggerId": "7777777777777777777.8888888888888888888"
|
1000
|
+
},
|
1001
|
+
"sessionId": 1
|
1002
|
+
}
|
1003
|
+
=== end content
|