Skip to content

Commit 8952758

Browse files
committed
Roll protocol to r1505444
1 parent 11bcaf8 commit 8952758

File tree

7 files changed

+95
-42
lines changed

7 files changed

+95
-42
lines changed

changelog.md

Lines changed: 46 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,52 @@
11

22

3+
## Roll protocol to r1505444 — _2025-08-23T04:31:11.000Z_
4+
###### Diff: [`11bcaf8...1551fe2`](https://github.com/ChromeDevTools/devtools-protocol/compare/11bcaf8...1551fe2)
5+
6+
```diff
7+
@@ domains/CSS.pdl:239 @@ experimental domain CSS
8+
# Computed style property value.
9+
string value
10+
11+
+ experimental type ComputedStyleExtraFields extends object
12+
+ properties
13+
+ # Returns whether or not this node is being rendered with base appearance,
14+
+ # which happens when it has its appearance property set to base/base-select
15+
+ # or it is in the subtree of an element being rendered with base appearance.
16+
+ boolean isAppearanceBase
17+
+
18+
# CSS style representation.
19+
type CSSStyle extends object
20+
properties
21+
@@ -674,6 +681,9 @@ experimental domain CSS
22+
returns
23+
# Computed style for the specified DOM node.
24+
array of CSSComputedStyleProperty computedStyle
25+
+ # A list of non-standard "extra fields" which blink stores alongside each
26+
+ # computed style.
27+
+ experimental ComputedStyleExtraFields extraFields
28+
29+
# Resolve the specified values in the context of the provided element.
30+
# For example, a value of '1em' is evaluated according to the computed
31+
diff --git a/pdl/domains/Network.pdl b/pdl/domains/Network.pdl
32+
index 8958da96..a8fd0f2c 100644
33+
--- a/pdl/domains/Network.pdl
34+
+++ b/pdl/domains/Network.pdl
35+
@@ -1107,10 +1107,6 @@ domain Network
36+
optional integer maxPostDataSize
37+
# Whether DirectSocket chunk send/receive events should be reported.
38+
experimental optional boolean reportDirectSocketTraffic
39+
- # Enable storing response bodies outside of renderer, so that these survive
40+
- # a cross-process navigation. Requires maxTotalBufferSize to be set.
41+
- # Currently defaults to false.
42+
- experimental optional boolean enableDurableMessages
43+
44+
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
45+
# information in the `cookies` field.
46+
```
47+
348
## Roll protocol to r1504847 — _2025-08-22T04:32:04.000Z_
4-
###### Diff: [`65c042d...03b5ae0`](https://github.com/ChromeDevTools/devtools-protocol/compare/65c042d...03b5ae0)
49+
###### Diff: [`65c042d...11bcaf8`](https://github.com/ChromeDevTools/devtools-protocol/compare/65c042d...11bcaf8)
550

651
```diff
752
@@ domains/Media.pdl:66 @@ experimental domain Media
@@ -41905,24 +41950,4 @@ index d4102f5c..6285d9b6 100644
4190541950
storage-access
4190641951
sync-xhr
4190741952
trust-token-redemption
41908-
```
41909-
41910-
## Roll protocol to r1081314 — _2022-12-09T04:28:47.000Z_
41911-
###### Diff: [`c1e172c...d4cef45`](https://github.com/ChromeDevTools/devtools-protocol/compare/c1e172c...d4cef45)
41912-
41913-
```diff
41914-
@@ browser_protocol.pdl:9569 @@ experimental domain SystemInfo
41915-
# supported.
41916-
string commandLine
41917-
41918-
+ # Returns information about the feature state.
41919-
+ command getFeatureState
41920-
+ parameters
41921-
+ string featureState
41922-
+ returns
41923-
+ boolean featureEnabled
41924-
+
41925-
# Returns information about all running processes.
41926-
command getProcessInfo
41927-
returns
4192841953
```

json/browser_protocol.json

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4487,6 +4487,18 @@
44874487
}
44884488
]
44894489
},
4490+
{
4491+
"id": "ComputedStyleExtraFields",
4492+
"experimental": true,
4493+
"type": "object",
4494+
"properties": [
4495+
{
4496+
"name": "isAppearanceBase",
4497+
"description": "Returns whether or not this node is being rendered with base appearance,\nwhich happens when it has its appearance property set to base/base-select\nor it is in the subtree of an element being rendered with base appearance.",
4498+
"type": "boolean"
4499+
}
4500+
]
4501+
},
44904502
{
44914503
"id": "CSSStyle",
44924504
"description": "CSS style representation.",
@@ -5489,6 +5501,12 @@
54895501
"items": {
54905502
"$ref": "CSSComputedStyleProperty"
54915503
}
5504+
},
5505+
{
5506+
"name": "extraFields",
5507+
"description": "A list of non-standard \"extra fields\" which blink stores alongside each\ncomputed style.",
5508+
"experimental": true,
5509+
"$ref": "ComputedStyleExtraFields"
54925510
}
54935511
]
54945512
},
@@ -17147,13 +17165,6 @@
1714717165
"experimental": true,
1714817166
"optional": true,
1714917167
"type": "boolean"
17150-
},
17151-
{
17152-
"name": "enableDurableMessages",
17153-
"description": "Enable storing response bodies outside of renderer, so that these survive\na cross-process navigation. Requires maxTotalBufferSize to be set.\nCurrently defaults to false.",
17154-
"experimental": true,
17155-
"optional": true,
17156-
"type": "boolean"
1715717168
}
1715817169
]
1715917170
},

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

pdl/domains/CSS.pdl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,13 @@ experimental domain CSS
239239
# Computed style property value.
240240
string value
241241

242+
experimental type ComputedStyleExtraFields extends object
243+
properties
244+
# Returns whether or not this node is being rendered with base appearance,
245+
# which happens when it has its appearance property set to base/base-select
246+
# or it is in the subtree of an element being rendered with base appearance.
247+
boolean isAppearanceBase
248+
242249
# CSS style representation.
243250
type CSSStyle extends object
244251
properties
@@ -674,6 +681,9 @@ experimental domain CSS
674681
returns
675682
# Computed style for the specified DOM node.
676683
array of CSSComputedStyleProperty computedStyle
684+
# A list of non-standard "extra fields" which blink stores alongside each
685+
# computed style.
686+
experimental ComputedStyleExtraFields extraFields
677687

678688
# Resolve the specified values in the context of the provided element.
679689
# For example, a value of '1em' is evaluated according to the computed

pdl/domains/Network.pdl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,10 +1107,6 @@ domain Network
11071107
optional integer maxPostDataSize
11081108
# Whether DirectSocket chunk send/receive events should be reported.
11091109
experimental optional boolean reportDirectSocketTraffic
1110-
# Enable storing response bodies outside of renderer, so that these survive
1111-
# a cross-process navigation. Requires maxTotalBufferSize to be set.
1112-
# Currently defaults to false.
1113-
experimental optional boolean enableDurableMessages
11141110

11151111
# Returns all browser cookies. Depending on the backend support, will return detailed cookie
11161112
# information in the `cookies` field.

types/protocol.d.ts

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5282,6 +5282,18 @@ export namespace Protocol {
52825282
value: string;
52835283
}
52845284

5285+
/**
5286+
* @experimental
5287+
*/
5288+
export interface ComputedStyleExtraFields {
5289+
/**
5290+
* Returns whether or not this node is being rendered with base appearance,
5291+
* which happens when it has its appearance property set to base/base-select
5292+
* or it is in the subtree of an element being rendered with base appearance.
5293+
*/
5294+
isAppearanceBase: boolean;
5295+
}
5296+
52855297
/**
52865298
* CSS style representation.
52875299
*/
@@ -6023,6 +6035,12 @@ export namespace Protocol {
60236035
* Computed style for the specified DOM node.
60246036
*/
60256037
computedStyle: CSSComputedStyleProperty[];
6038+
/**
6039+
* A list of non-standard "extra fields" which blink stores alongside each
6040+
* computed style.
6041+
* @experimental
6042+
*/
6043+
extraFields: ComputedStyleExtraFields;
60266044
}
60276045

60286046
export interface ResolveValuesRequest {
@@ -13514,13 +13532,6 @@ export namespace Protocol {
1351413532
* @experimental
1351513533
*/
1351613534
reportDirectSocketTraffic?: boolean;
13517-
/**
13518-
* Enable storing response bodies outside of renderer, so that these survive
13519-
* a cross-process navigation. Requires maxTotalBufferSize to be set.
13520-
* Currently defaults to false.
13521-
* @experimental
13522-
*/
13523-
enableDurableMessages?: boolean;
1352413535
}
1352513536

1352613537
export interface GetAllCookiesResponse {

0 commit comments

Comments
 (0)