forked from arc-archive/arc-response
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-elements.json
73 lines (73 loc) · 2.01 KB
/
custom-elements.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"version": "experimental",
"tags": [
{
"name": "request-timings-panel",
"path": "./request-timings-panel.js",
"description": "An element to render a set of ARC HAR timings.",
"attributes": [
{
"name": "narrow",
"description": "When set it renders mobile friendly view",
"type": "boolean"
}
],
"properties": [
{
"name": "styles",
"type": "CSSResult"
},
{
"name": "redirects",
"description": "An array of HAR 1.2 timings object.\nIt describes a timings for any redirect occurrence during the request.\nThe list should should be ordered by the occurrence time.",
"type": "RequestTimings[]"
},
{
"name": "timings",
"description": "The main request HAR timings.",
"type": "RequestTimings"
},
{
"name": "narrow",
"attribute": "narrow",
"description": "When set it renders mobile friendly view",
"type": "boolean"
},
{
"name": "hasRedirects",
"description": "Tests whether redirects list has been set",
"type": "boolean"
}
]
},
{
"name": "request-timings",
"path": "./request-timings.js",
"description": "An element to render request timings data according to the HAR 1.2 spec.",
"attributes": [
{
"name": "narrow",
"description": "When set it renders mobile friendly view",
"type": "boolean"
}
],
"properties": [
{
"name": "styles",
"type": "CSSResult"
},
{
"name": "timings",
"description": "A timings object as described in HAR 1.2 spec.",
"type": "RequestTimings"
},
{
"name": "narrow",
"attribute": "narrow",
"description": "When set it renders mobile friendly view",
"type": "boolean"
}
]
}
]
}