Skip to content

Commit e8ee850

Browse files
committed
Roll protocol to r1580600
1 parent 92e7a2f commit e8ee850

File tree

10 files changed

+311
-43
lines changed

10 files changed

+311
-43
lines changed

changelog.md

Lines changed: 99 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,105 @@
11

22

3+
## Roll protocol to r1580600 — _2026-02-06T04:57:42.000Z_
4+
###### Diff: [`92e7a2f...06965c3`](https://github.com/ChromeDevTools/devtools-protocol/compare/92e7a2f...06965c3)
5+
6+
```diff
7+
@@ domains/Audits.pdl:353 @@ experimental domain Audits
8+
IncorrectDigestType
9+
IncorrectDigestLength
10+
11+
+ type ConnectionAllowlistError extends string
12+
+ enum
13+
+ InvalidHeader
14+
+ MoreThanOneList
15+
+ ItemNotInnerList
16+
+ InvalidAllowlistItemType
17+
+ ReportingEndpointNotToken
18+
+ InvalidUrlPattern
19+
+
20+
# Details for issues around "Attribution Reporting API" usage.
21+
# Explainer: https://github.com/WICG/attribution-reporting-api
22+
type AttributionReportingIssueDetails extends object
23+
@@ -396,6 +405,11 @@ experimental domain Audits
24+
UnencodedDigestError error
25+
AffectedRequest request
26+
27+
+ type ConnectionAllowlistIssueDetails extends object
28+
+ properties
29+
+ ConnectionAllowlistError error
30+
+ AffectedRequest request
31+
+
32+
type GenericIssueErrorType extends string
33+
enum
34+
FormLabelForNameError
35+
@@ -709,6 +723,7 @@ experimental domain Audits
36+
ElementAccessibilityIssue
37+
SRIMessageSignatureIssue
38+
UnencodedDigestIssue
39+
+ ConnectionAllowlistIssue
40+
UserReidentificationIssue
41+
PermissionElementIssue
42+
43+
@@ -742,6 +757,7 @@ experimental domain Audits
44+
optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
45+
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
46+
optional UnencodedDigestIssueDetails unencodedDigestIssueDetails
47+
+ optional ConnectionAllowlistIssueDetails connectionAllowlistIssueDetails
48+
optional UserReidentificationIssueDetails userReidentificationIssueDetails
49+
optional PermissionElementIssueDetails permissionElementIssueDetails
50+
51+
diff --git a/pdl/domains/Overlay.pdl b/pdl/domains/Overlay.pdl
52+
index 689e42d8..8ef51bbb 100644
53+
--- a/pdl/domains/Overlay.pdl
54+
+++ b/pdl/domains/Overlay.pdl
55+
@@ -255,6 +255,13 @@ experimental domain Overlay
56+
captureAreaScreenshot
57+
none
58+
59+
+ type InspectedElementAnchorConfig extends object
60+
+ properties
61+
+ # Identifier of the node to highlight.
62+
+ optional DOM.NodeId nodeId
63+
+ # Identifier of the backend node to highlight.
64+
+ optional DOM.BackendNodeId backendNodeId
65+
+
66+
# Disables domain notifications.
67+
command disable
68+
69+
@@ -423,6 +430,11 @@ experimental domain Overlay
70+
# An array of node identifiers and descriptors for the highlight appearance.
71+
array of ContainerQueryHighlightConfig containerQueryHighlightConfigs
72+
73+
+ command setShowInspectedElementAnchor
74+
+ parameters
75+
+ # Node identifier for which to show an anchor for.
76+
+ InspectedElementAnchorConfig inspectedElementAnchorConfig
77+
+
78+
# Requests that backend shows paint rectangles
79+
command setShowPaintRects
80+
parameters
81+
@@ -494,5 +506,17 @@ experimental domain Overlay
82+
# Viewport to capture, in device independent pixels (dip).
83+
Page.Viewport viewport
84+
85+
+ # Fired when user asks to show the Inspect panel.
86+
+ event inspectPanelShowRequested
87+
+ parameters
88+
+ # Id of the node to show in the panel.
89+
+ DOM.BackendNodeId backendNodeId
90+
+
91+
+ # Fired when user asks to restore the Inspected Element floating window.
92+
+ event inspectedElementWindowRestored
93+
+ parameters
94+
+ # Id of the node to restore the floating window for.
95+
+ DOM.BackendNodeId backendNodeId
96+
+
97+
# Fired when user cancels the inspect mode.
98+
event inspectModeCanceled
99+
```
100+
3101
## Roll protocol to r1579878 — _2026-02-05T04:58:47.000Z_
4-
###### Diff: [`f8bae52...4c0b37f`](https://github.com/ChromeDevTools/devtools-protocol/compare/f8bae52...4c0b37f)
102+
###### Diff: [`f8bae52...92e7a2f`](https://github.com/ChromeDevTools/devtools-protocol/compare/f8bae52...92e7a2f)
5103

6104
```diff
7105
@@ domains/Page.pdl:1581 @@ domain Page
@@ -42276,42 +42374,4 @@ index 0dbdc01d..7a3c772c 100644
4227642374

4227742375
# Fired when a prerender attempt is completed.
4227842376
event prerenderAttemptCompleted
42279-
```
42280-
42281-
## Roll protocol to r1133601 — _2023-04-21T04:27:13.000Z_
42282-
###### Diff: [`84eeee8...052cf2f`](https://github.com/ChromeDevTools/devtools-protocol/compare/84eeee8...052cf2f)
42283-
42284-
```diff
42285-
@@ browser_protocol.pdl:777 @@ experimental domain Audits
42286-
42287-
# This issue warns about sites in the redirect chain of a finished navigation
42288-
# that may be flagged as trackers and have their state cleared if they don't
42289-
- # receive a user interaction. Note that in this context 'site' means eTLD+1.
42290-
- # For example, if the URL `https://example.test:80/bounce` was in the
42291-
+ # receive a user interaction. Note that in this context 'site' means eTLD+1.
42292-
+ # For example, if the URL `https://example.test:80/bounce` was in the
42293-
# redirect chain, the site reported would be `example.test`.
42294-
type BounceTrackingIssueDetails extends object
42295-
properties
42296-
@@ -10963,6 +10963,20 @@ experimental domain Preload
42297-
# that is incompatible with prerender and has caused the cancellation of the attempt
42298-
optional string disallowedApiMethod
42299-
42300-
+ type PreloadEnabledState extends string
42301-
+ enum
42302-
+ Enabled
42303-
+ DisabledByDataSaver
42304-
+ DisabledByBatterySaver
42305-
+ DisabledByPreference
42306-
+ # Service not available.
42307-
+ NotSupported
42308-
+
42309-
+ # Fired when a preload enabled state is updated.
42310-
+ event preloadEnabledStateUpdated
42311-
+ parameters
42312-
+ PreloadEnabledState state
42313-
+
42314-
# Preloading status values, see also PreloadingTriggeringOutcome. This
42315-
# status is shared by prefetchStatusUpdated and prerenderStatusUpdated.
42316-
type PreloadingStatus extends string
4231742377
```

json/browser_protocol.json

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1615,6 +1615,18 @@
16151615
"IncorrectDigestLength"
16161616
]
16171617
},
1618+
{
1619+
"id": "ConnectionAllowlistError",
1620+
"type": "string",
1621+
"enum": [
1622+
"InvalidHeader",
1623+
"MoreThanOneList",
1624+
"ItemNotInnerList",
1625+
"InvalidAllowlistItemType",
1626+
"ReportingEndpointNotToken",
1627+
"InvalidUrlPattern"
1628+
]
1629+
},
16181630
{
16191631
"id": "AttributionReportingIssueDetails",
16201632
"description": "Details for issues around \"Attribution Reporting API\" usage.\nExplainer: https://github.com/WICG/attribution-reporting-api",
@@ -1738,6 +1750,20 @@
17381750
}
17391751
]
17401752
},
1753+
{
1754+
"id": "ConnectionAllowlistIssueDetails",
1755+
"type": "object",
1756+
"properties": [
1757+
{
1758+
"name": "error",
1759+
"$ref": "ConnectionAllowlistError"
1760+
},
1761+
{
1762+
"name": "request",
1763+
"$ref": "AffectedRequest"
1764+
}
1765+
]
1766+
},
17411767
{
17421768
"id": "GenericIssueErrorType",
17431769
"type": "string",
@@ -2248,6 +2274,7 @@
22482274
"ElementAccessibilityIssue",
22492275
"SRIMessageSignatureIssue",
22502276
"UnencodedDigestIssue",
2277+
"ConnectionAllowlistIssue",
22512278
"UserReidentificationIssue",
22522279
"PermissionElementIssue"
22532280
]
@@ -2383,6 +2410,11 @@
23832410
"optional": true,
23842411
"$ref": "UnencodedDigestIssueDetails"
23852412
},
2413+
{
2414+
"name": "connectionAllowlistIssueDetails",
2415+
"optional": true,
2416+
"$ref": "ConnectionAllowlistIssueDetails"
2417+
},
23862418
{
23872419
"name": "userReidentificationIssueDetails",
23882420
"optional": true,
@@ -20284,6 +20316,24 @@
2028420316
"captureAreaScreenshot",
2028520317
"none"
2028620318
]
20319+
},
20320+
{
20321+
"id": "InspectedElementAnchorConfig",
20322+
"type": "object",
20323+
"properties": [
20324+
{
20325+
"name": "nodeId",
20326+
"description": "Identifier of the node to highlight.",
20327+
"optional": true,
20328+
"$ref": "DOM.NodeId"
20329+
},
20330+
{
20331+
"name": "backendNodeId",
20332+
"description": "Identifier of the backend node to highlight.",
20333+
"optional": true,
20334+
"$ref": "DOM.BackendNodeId"
20335+
}
20336+
]
2028720337
}
2028820338
],
2028920339
"commands": [
@@ -20643,6 +20693,16 @@
2064320693
}
2064420694
]
2064520695
},
20696+
{
20697+
"name": "setShowInspectedElementAnchor",
20698+
"parameters": [
20699+
{
20700+
"name": "inspectedElementAnchorConfig",
20701+
"description": "Node identifier for which to show an anchor for.",
20702+
"$ref": "InspectedElementAnchorConfig"
20703+
}
20704+
]
20705+
},
2064620706
{
2064720707
"name": "setShowPaintRects",
2064820708
"description": "Requests that backend shows paint rectangles",
@@ -20782,6 +20842,28 @@
2078220842
}
2078320843
]
2078420844
},
20845+
{
20846+
"name": "inspectPanelShowRequested",
20847+
"description": "Fired when user asks to show the Inspect panel.",
20848+
"parameters": [
20849+
{
20850+
"name": "backendNodeId",
20851+
"description": "Id of the node to show in the panel.",
20852+
"$ref": "DOM.BackendNodeId"
20853+
}
20854+
]
20855+
},
20856+
{
20857+
"name": "inspectedElementWindowRestored",
20858+
"description": "Fired when user asks to restore the Inspected Element floating window.",
20859+
"parameters": [
20860+
{
20861+
"name": "backendNodeId",
20862+
"description": "Id of the node to restore the floating window for.",
20863+
"$ref": "DOM.BackendNodeId"
20864+
}
20865+
]
20866+
},
2078520867
{
2078620868
"name": "inspectModeCanceled",
2078720869
"description": "Fired when user cancels the inspect mode."

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1579878",
3+
"version": "0.0.1580600",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Audits.pdl

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,15 @@ experimental domain Audits
353353
IncorrectDigestType
354354
IncorrectDigestLength
355355

356+
type ConnectionAllowlistError extends string
357+
enum
358+
InvalidHeader
359+
MoreThanOneList
360+
ItemNotInnerList
361+
InvalidAllowlistItemType
362+
ReportingEndpointNotToken
363+
InvalidUrlPattern
364+
356365
# Details for issues around "Attribution Reporting API" usage.
357366
# Explainer: https://github.com/WICG/attribution-reporting-api
358367
type AttributionReportingIssueDetails extends object
@@ -396,6 +405,11 @@ experimental domain Audits
396405
UnencodedDigestError error
397406
AffectedRequest request
398407

408+
type ConnectionAllowlistIssueDetails extends object
409+
properties
410+
ConnectionAllowlistError error
411+
AffectedRequest request
412+
399413
type GenericIssueErrorType extends string
400414
enum
401415
FormLabelForNameError
@@ -709,6 +723,7 @@ experimental domain Audits
709723
ElementAccessibilityIssue
710724
SRIMessageSignatureIssue
711725
UnencodedDigestIssue
726+
ConnectionAllowlistIssue
712727
UserReidentificationIssue
713728
PermissionElementIssue
714729

@@ -742,6 +757,7 @@ experimental domain Audits
742757
optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
743758
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
744759
optional UnencodedDigestIssueDetails unencodedDigestIssueDetails
760+
optional ConnectionAllowlistIssueDetails connectionAllowlistIssueDetails
745761
optional UserReidentificationIssueDetails userReidentificationIssueDetails
746762
optional PermissionElementIssueDetails permissionElementIssueDetails
747763

pdl/domains/Overlay.pdl

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,13 @@ experimental domain Overlay
255255
captureAreaScreenshot
256256
none
257257

258+
type InspectedElementAnchorConfig extends object
259+
properties
260+
# Identifier of the node to highlight.
261+
optional DOM.NodeId nodeId
262+
# Identifier of the backend node to highlight.
263+
optional DOM.BackendNodeId backendNodeId
264+
258265
# Disables domain notifications.
259266
command disable
260267

@@ -423,6 +430,11 @@ experimental domain Overlay
423430
# An array of node identifiers and descriptors for the highlight appearance.
424431
array of ContainerQueryHighlightConfig containerQueryHighlightConfigs
425432

433+
command setShowInspectedElementAnchor
434+
parameters
435+
# Node identifier for which to show an anchor for.
436+
InspectedElementAnchorConfig inspectedElementAnchorConfig
437+
426438
# Requests that backend shows paint rectangles
427439
command setShowPaintRects
428440
parameters
@@ -494,5 +506,17 @@ experimental domain Overlay
494506
# Viewport to capture, in device independent pixels (dip).
495507
Page.Viewport viewport
496508

509+
# Fired when user asks to show the Inspect panel.
510+
event inspectPanelShowRequested
511+
parameters
512+
# Id of the node to show in the panel.
513+
DOM.BackendNodeId backendNodeId
514+
515+
# Fired when user asks to restore the Inspected Element floating window.
516+
event inspectedElementWindowRestored
517+
parameters
518+
# Id of the node to restore the floating window for.
519+
DOM.BackendNodeId backendNodeId
520+
497521
# Fired when user cancels the inspect mode.
498522
event inspectModeCanceled

0 commit comments

Comments
 (0)