Skip to content

Commit 3bbf56a

Browse files
committed
bump protocol
1 parent 32e2d2a commit 3bbf56a

3 files changed

Lines changed: 112 additions & 2 deletions

File tree

pages/_data/tot.json

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15410,6 +15410,116 @@
1541015410
}
1541115411
]
1541215412
},
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.",
15514+
"parameters": [
15515+
{
15516+
"name": "event",
15517+
"$ref": "TimelineEvent"
15518+
}
15519+
]
15520+
}
15521+
]
15522+
},
1541315523
{
1541415524
"domain": "Security",
1541515525
"description": "Security",

pages/tot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ There is no backwards compatibility support guaranteed for the capabilities it i
1010

1111
<h5 browser>Latest <a
1212
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>
13-
<code browser>Date: 2020-12-24 08:16:47 -0800
13+
<code browser>Date: 2021-01-05 22:16:00 -0800
1414
</code>
1515

1616
<h5 js>Latest <a

search_index/tot.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)