Skip to content

Commit bdd3e90

Browse files
committed
Roll protocol to r1478340
1 parent 3d7bae0 commit bdd3e90

File tree

5 files changed

+97
-39
lines changed

5 files changed

+97
-39
lines changed

changelog.md

Lines changed: 68 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,74 @@
11

22

3+
## Roll protocol to r1478340 — _2025-06-25T04:32:05.000Z_
4+
###### Diff: [`3d7bae0...2dc1ce3`](https://github.com/ChromeDevTools/devtools-protocol/compare/3d7bae0...2dc1ce3)
5+
6+
```diff
7+
@@ browser_protocol.pdl:1031 @@ experimental domain Audits
8+
# Additional information about the Partitioning Blob URL issue.
9+
PartitioningBlobURLInfo partitioningBlobURLInfo
10+
11+
- type SelectElementAccessibilityIssueReason extends string
12+
+ type ElementAccessibilityIssueReason extends string
13+
enum
14+
DisallowedSelectChild
15+
DisallowedOptGroupChild
16+
NonPhrasingContentOptionChild
17+
InteractiveContentOptionChild
18+
InteractiveContentLegendChild
19+
+ InteractiveContentSummaryDescendant
20+
21+
- # This issue warns about errors in the select element content model.
22+
- type SelectElementAccessibilityIssueDetails extends object
23+
+ # This issue warns about errors in the select or summary element content model.
24+
+ type ElementAccessibilityIssueDetails extends object
25+
properties
26+
DOM.BackendNodeId nodeId
27+
- SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
28+
+ ElementAccessibilityIssueReason elementAccessibilityIssueReason
29+
boolean hasDisallowedAttributes
30+
31+
type StyleSheetLoadingIssueReason extends string
32+
@@ -1120,7 +1121,7 @@ experimental domain Audits
33+
FederatedAuthUserInfoRequestIssue
34+
PropertyRuleIssue
35+
SharedDictionaryIssue
36+
- SelectElementAccessibilityIssue
37+
+ ElementAccessibilityIssue
38+
SRIMessageSignatureIssue
39+
UserReidentificationIssue
40+
41+
@@ -1151,7 +1152,7 @@ experimental domain Audits
42+
optional PropertyRuleIssueDetails propertyRuleIssueDetails
43+
optional FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails
44+
optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
45+
- optional SelectElementAccessibilityIssueDetails selectElementAccessibilityIssueDetails
46+
+ optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
47+
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
48+
optional UserReidentificationIssueDetails userReidentificationIssueDetails
49+
50+
@@ -3517,7 +3518,8 @@ domain DOM
51+
# Get the popover target for a given element. In this case, this given
52+
# element can only be an HTMLFormControlElement (<input>, <button>).
53+
PopoverTarget
54+
- # Get the interest target for a given element.
55+
+ # Get the interestfor target (the attribute used to be named
56+
+ # `interesttarget`) for for a given element.
57+
InterestTarget
58+
# Get the commandfor target for a given element. In this case, this given
59+
# element can only be an HTMLButtonElement.
60+
@@ -10060,6 +10062,7 @@ domain Page
61+
BroadcastChannel
62+
WebXR
63+
SharedWorker
64+
+ SharedWorkerMessage
65+
WebLocks
66+
WebHID
67+
WebShare
68+
```
69+
370
## Roll protocol to r1477697 — _2025-06-24T04:32:08.000Z_
4-
###### Diff: [`b6236d7...acdbe1e`](https://github.com/ChromeDevTools/devtools-protocol/compare/b6236d7...acdbe1e)
71+
###### Diff: [`b6236d7...3d7bae0`](https://github.com/ChromeDevTools/devtools-protocol/compare/b6236d7...3d7bae0)
572

673
```diff
774
@@ browser_protocol.pdl:9720 @@ domain Page
@@ -14073,18 +14140,4 @@ index b3b97fa..6efcf78 100644
1407314140

1407414141
# A filter used by target query/discovery/auto-attach operations.
1407514142
experimental type FilterEntry extends object
14076-
```
14077-
14078-
## Roll protocol to r1051614 — _2022-09-27T04:54:05.000Z_
14079-
###### Diff: [`32a0581...7688064`](https://github.com/ChromeDevTools/devtools-protocol/compare/32a0581...7688064)
14080-
14081-
```diff
14082-
@@ browser_protocol.pdl:783 @@ experimental domain Audits
14083-
ObsoleteWebRtcCipherSuite
14084-
OpenWebDatabaseInsecureContext
14085-
OverflowVisibleOnReplacedElement
14086-
+ PaymentInstruments
14087-
PersistentQuotaType
14088-
PictureSourceSrc
14089-
PrefixedCancelAnimationFrame
1409014143
```

json/browser_protocol.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1966,28 +1966,29 @@
19661966
]
19671967
},
19681968
{
1969-
"id": "SelectElementAccessibilityIssueReason",
1969+
"id": "ElementAccessibilityIssueReason",
19701970
"type": "string",
19711971
"enum": [
19721972
"DisallowedSelectChild",
19731973
"DisallowedOptGroupChild",
19741974
"NonPhrasingContentOptionChild",
19751975
"InteractiveContentOptionChild",
1976-
"InteractiveContentLegendChild"
1976+
"InteractiveContentLegendChild",
1977+
"InteractiveContentSummaryDescendant"
19771978
]
19781979
},
19791980
{
1980-
"id": "SelectElementAccessibilityIssueDetails",
1981-
"description": "This issue warns about errors in the select element content model.",
1981+
"id": "ElementAccessibilityIssueDetails",
1982+
"description": "This issue warns about errors in the select or summary element content model.",
19821983
"type": "object",
19831984
"properties": [
19841985
{
19851986
"name": "nodeId",
19861987
"$ref": "DOM.BackendNodeId"
19871988
},
19881989
{
1989-
"name": "selectElementAccessibilityIssueReason",
1990-
"$ref": "SelectElementAccessibilityIssueReason"
1990+
"name": "elementAccessibilityIssueReason",
1991+
"$ref": "ElementAccessibilityIssueReason"
19911992
},
19921993
{
19931994
"name": "hasDisallowedAttributes",
@@ -2111,7 +2112,7 @@
21112112
"FederatedAuthUserInfoRequestIssue",
21122113
"PropertyRuleIssue",
21132114
"SharedDictionaryIssue",
2114-
"SelectElementAccessibilityIssue",
2115+
"ElementAccessibilityIssue",
21152116
"SRIMessageSignatureIssue",
21162117
"UserReidentificationIssue"
21172118
]
@@ -2233,9 +2234,9 @@
22332234
"$ref": "SharedDictionaryIssueDetails"
22342235
},
22352236
{
2236-
"name": "selectElementAccessibilityIssueDetails",
2237+
"name": "elementAccessibilityIssueDetails",
22372238
"optional": true,
2238-
"$ref": "SelectElementAccessibilityIssueDetails"
2239+
"$ref": "ElementAccessibilityIssueDetails"
22392240
},
22402241
{
22412242
"name": "sriMessageSignatureIssueDetails",
@@ -19645,6 +19646,7 @@
1964519646
"BroadcastChannel",
1964619647
"WebXR",
1964719648
"SharedWorker",
19649+
"SharedWorkerMessage",
1964819650
"WebLocks",
1964919651
"WebHID",
1965019652
"WebShare",

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.1477697",
3+
"version": "0.0.1478340",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/browser_protocol.pdl

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,19 +1031,20 @@ experimental domain Audits
10311031
# Additional information about the Partitioning Blob URL issue.
10321032
PartitioningBlobURLInfo partitioningBlobURLInfo
10331033

1034-
type SelectElementAccessibilityIssueReason extends string
1034+
type ElementAccessibilityIssueReason extends string
10351035
enum
10361036
DisallowedSelectChild
10371037
DisallowedOptGroupChild
10381038
NonPhrasingContentOptionChild
10391039
InteractiveContentOptionChild
10401040
InteractiveContentLegendChild
1041+
InteractiveContentSummaryDescendant
10411042

1042-
# This issue warns about errors in the select element content model.
1043-
type SelectElementAccessibilityIssueDetails extends object
1043+
# This issue warns about errors in the select or summary element content model.
1044+
type ElementAccessibilityIssueDetails extends object
10441045
properties
10451046
DOM.BackendNodeId nodeId
1046-
SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
1047+
ElementAccessibilityIssueReason elementAccessibilityIssueReason
10471048
boolean hasDisallowedAttributes
10481049

10491050
type StyleSheetLoadingIssueReason extends string
@@ -1120,7 +1121,7 @@ experimental domain Audits
11201121
FederatedAuthUserInfoRequestIssue
11211122
PropertyRuleIssue
11221123
SharedDictionaryIssue
1123-
SelectElementAccessibilityIssue
1124+
ElementAccessibilityIssue
11241125
SRIMessageSignatureIssue
11251126
UserReidentificationIssue
11261127

@@ -1151,7 +1152,7 @@ experimental domain Audits
11511152
optional PropertyRuleIssueDetails propertyRuleIssueDetails
11521153
optional FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails
11531154
optional SharedDictionaryIssueDetails sharedDictionaryIssueDetails
1154-
optional SelectElementAccessibilityIssueDetails selectElementAccessibilityIssueDetails
1155+
optional ElementAccessibilityIssueDetails elementAccessibilityIssueDetails
11551156
optional SRIMessageSignatureIssueDetails sriMessageSignatureIssueDetails
11561157
optional UserReidentificationIssueDetails userReidentificationIssueDetails
11571158

@@ -3517,7 +3518,8 @@ domain DOM
35173518
# Get the popover target for a given element. In this case, this given
35183519
# element can only be an HTMLFormControlElement (<input>, <button>).
35193520
PopoverTarget
3520-
# Get the interest target for a given element.
3521+
# Get the interestfor target (the attribute used to be named
3522+
# `interesttarget`) for for a given element.
35213523
InterestTarget
35223524
# Get the commandfor target for a given element. In this case, this given
35233525
# element can only be an HTMLButtonElement.
@@ -10060,6 +10062,7 @@ domain Page
1006010062
BroadcastChannel
1006110063
WebXR
1006210064
SharedWorker
10065+
SharedWorkerMessage
1006310066
WebLocks
1006410067
WebHID
1006510068
WebShare

0 commit comments

Comments
 (0)