You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/_data/tot.json
+110Lines changed: 110 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15410,6 +15410,116 @@
15410
15410
}
15411
15411
]
15412
15412
},
15413
+
{
15414
+
"domain": "PerformanceTimeline",
15415
+
"description": "Reporting of performance timeline events, as specified in\nhttps://w3c.github.io/performance-timeline/#dom-performanceobserver.",
15416
+
"experimental": true,
15417
+
"dependencies": [
15418
+
"DOM",
15419
+
"Network"
15420
+
],
15421
+
"types": [
15422
+
{
15423
+
"id": "LargestContentfulPaint",
15424
+
"description": "See https://github.com/WICG/LargestContentfulPaint and largest_contentful_paint.idl",
15425
+
"type": "object",
15426
+
"properties": [
15427
+
{
15428
+
"name": "renderTime",
15429
+
"type": "number"
15430
+
},
15431
+
{
15432
+
"name": "loadTime",
15433
+
"type": "number"
15434
+
},
15435
+
{
15436
+
"name": "size",
15437
+
"description": "The number of pixels being painted.",
15438
+
"type": "number"
15439
+
},
15440
+
{
15441
+
"name": "elementId",
15442
+
"description": "The id attribute of the element, if available.",
15443
+
"optional": true,
15444
+
"type": "string"
15445
+
},
15446
+
{
15447
+
"name": "url",
15448
+
"description": "The URL of the image (may be trimmed).",
15449
+
"optional": true,
15450
+
"type": "string"
15451
+
},
15452
+
{
15453
+
"name": "nodeId",
15454
+
"optional": true,
15455
+
"$ref": "DOM.BackendNodeId"
15456
+
}
15457
+
]
15458
+
},
15459
+
{
15460
+
"id": "TimelineEvent",
15461
+
"type": "object",
15462
+
"properties": [
15463
+
{
15464
+
"name": "frameId",
15465
+
"description": "Identifies the frame that this event is related to. Empty for non-frame targets.",
15466
+
"$ref": "Page.FrameId"
15467
+
},
15468
+
{
15469
+
"name": "type",
15470
+
"type": "string"
15471
+
},
15472
+
{
15473
+
"name": "name",
15474
+
"type": "string"
15475
+
},
15476
+
{
15477
+
"name": "time",
15478
+
"description": "Time in seconds since Epoch, monotonically increasing within document lifetime.",
15479
+
"$ref": "Network.TimeSinceEpoch"
15480
+
},
15481
+
{
15482
+
"name": "duration",
15483
+
"description": "Event duration, if applicable.",
15484
+
"optional": true,
15485
+
"type": "number"
15486
+
},
15487
+
{
15488
+
"name": "lcpDetails",
15489
+
"optional": true,
15490
+
"$ref": "LargestContentfulPaint"
15491
+
}
15492
+
]
15493
+
}
15494
+
],
15495
+
"commands": [
15496
+
{
15497
+
"name": "enable",
15498
+
"description": "Previously buffered events would be reported before method returns.\nThe specified filter overrides any previous filters, passing empty\nfilter disables recording.\nNote that not all types exposed to the web platform are currently supported.\nSee also: timelineEventAdded",
15499
+
"parameters": [
15500
+
{
15501
+
"name": "eventTypes",
15502
+
"type": "array",
15503
+
"items": {
15504
+
"type": "string"
15505
+
}
15506
+
}
15507
+
]
15508
+
}
15509
+
],
15510
+
"events": [
15511
+
{
15512
+
"name": "timelineEventAdded",
15513
+
"description": "Sent when a performance timeline event is added. See reportPerformanceTimeline method.",
Copy file name to clipboardExpand all lines: pages/tot.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ There is no backwards compatibility support guaranteed for the capabilities it i
10
10
11
11
<h5browser>Latest <a
12
12
href="https://chromium.googlesource.com/chromium/src/+log/master/third_party/blink/renderer/core/inspector/browser_protocol.json">browser_protocol.json</a> version updated:</h5>
0 commit comments