Skip to content

Commit d9682c8

Browse files
committed
Roll protocol to r1548244
1 parent a07bc87 commit d9682c8

6 files changed

Lines changed: 40 additions & 98 deletions

File tree

changelog.md

Lines changed: 37 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,43 @@
11

22

3+
## Roll protocol to r1548244 — _2025-11-21T04:32:14.000Z_
4+
###### Diff: [`a07bc87...f72c051`](https://github.com/ChromeDevTools/devtools-protocol/compare/a07bc87...f72c051)
5+
6+
```diff
7+
@@ domains/CSS.pdl:500 @@ experimental domain CSS
8+
boolean inherits
9+
string syntax
10+
11+
-
12+
- # CSS font-palette-values rule representation.
13+
- type CSSFontPaletteValuesRule extends object
14+
- properties
15+
- # The css style sheet identifier (absent for user agent stylesheet and user-specified
16+
- # stylesheet rules) this rule came from.
17+
- optional StyleSheetId styleSheetId
18+
- # Parent stylesheet's origin.
19+
- StyleSheetOrigin origin
20+
- # Associated font palette name.
21+
- Value fontPaletteName
22+
- # Associated style declaration.
23+
- CSSStyle style
24+
-
25+
# CSS generic @rule representation.
26+
type CSSAtRule extends object
27+
properties
28+
@@ -800,8 +786,6 @@ experimental domain CSS
29+
optional array of CSSPropertyRule cssPropertyRules
30+
# A list of CSS property registrations matching this node.
31+
optional array of CSSPropertyRegistration cssPropertyRegistrations
32+
- # A font-palette-values rule matching this node.
33+
- optional CSSFontPaletteValuesRule cssFontPaletteValuesRule
34+
# A list of simple @rules matching this node or its pseudo-elements.
35+
optional array of CSSAtRule cssAtRules
36+
# Id of the first parent element that does not have display: contents.
37+
```
38+
339
## Roll protocol to r1547617 — _2025-11-20T04:31:52.000Z_
4-
###### Diff: [`672dae3...3e324cc`](https://github.com/ChromeDevTools/devtools-protocol/compare/672dae3...3e324cc)
40+
###### Diff: [`672dae3...a07bc87`](https://github.com/ChromeDevTools/devtools-protocol/compare/672dae3...a07bc87)
541

642
```diff
743
@@ domains/Network.pdl:1706 @@ domain Network
@@ -41928,21 +41964,4 @@ index 0dbdc01d..7a3c772c 100644
4192841964
# This domain allows interacting with the FedCM dialog.
4192941965
experimental domain FedCm
4193041966
event dialogShown
41931-
```
41932-
41933-
## Roll protocol to r1112051 — _2023-03-02T04:29:08.000Z_
41934-
###### Diff: [`b7cc171...6aab256`](https://github.com/ChromeDevTools/devtools-protocol/compare/b7cc171...6aab256)
41935-
41936-
```diff
41937-
@@ browser_protocol.pdl:10857 @@ experimental domain Preload
41938-
event ruleSetRemoved
41939-
parameters
41940-
RuleSetId id
41941-
+
41942-
+# This domain allows interacting with the FedCM dialog.
41943-
+experimental domain FedCm
41944-
+ event dialogShown
41945-
+
41946-
+ command enable
41947-
+ command disable
4194841967
```

json/browser_protocol.json

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -5150,34 +5150,6 @@
51505150
}
51515151
]
51525152
},
5153-
{
5154-
"id": "CSSFontPaletteValuesRule",
5155-
"description": "CSS font-palette-values rule representation.",
5156-
"type": "object",
5157-
"properties": [
5158-
{
5159-
"name": "styleSheetId",
5160-
"description": "The css style sheet identifier (absent for user agent stylesheet and user-specified\nstylesheet rules) this rule came from.",
5161-
"optional": true,
5162-
"$ref": "StyleSheetId"
5163-
},
5164-
{
5165-
"name": "origin",
5166-
"description": "Parent stylesheet's origin.",
5167-
"$ref": "StyleSheetOrigin"
5168-
},
5169-
{
5170-
"name": "fontPaletteName",
5171-
"description": "Associated font palette name.",
5172-
"$ref": "Value"
5173-
},
5174-
{
5175-
"name": "style",
5176-
"description": "Associated style declaration.",
5177-
"$ref": "CSSStyle"
5178-
}
5179-
]
5180-
},
51815153
{
51825154
"id": "CSSAtRule",
51835155
"description": "CSS generic @rule representation.",
@@ -5836,12 +5808,6 @@
58365808
"$ref": "CSSPropertyRegistration"
58375809
}
58385810
},
5839-
{
5840-
"name": "cssFontPaletteValuesRule",
5841-
"description": "A font-palette-values rule matching this node.",
5842-
"optional": true,
5843-
"$ref": "CSSFontPaletteValuesRule"
5844-
},
58455811
{
58465812
"name": "cssAtRules",
58475813
"description": "A list of simple @rules matching this node or its pseudo-elements.",

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.1547617",
3+
"version": "0.0.1548244",
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: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -500,20 +500,6 @@ experimental domain CSS
500500
boolean inherits
501501
string syntax
502502

503-
504-
# CSS font-palette-values rule representation.
505-
type CSSFontPaletteValuesRule extends object
506-
properties
507-
# The css style sheet identifier (absent for user agent stylesheet and user-specified
508-
# stylesheet rules) this rule came from.
509-
optional StyleSheetId styleSheetId
510-
# Parent stylesheet's origin.
511-
StyleSheetOrigin origin
512-
# Associated font palette name.
513-
Value fontPaletteName
514-
# Associated style declaration.
515-
CSSStyle style
516-
517503
# CSS generic @rule representation.
518504
type CSSAtRule extends object
519505
properties
@@ -800,8 +786,6 @@ experimental domain CSS
800786
optional array of CSSPropertyRule cssPropertyRules
801787
# A list of CSS property registrations matching this node.
802788
optional array of CSSPropertyRegistration cssPropertyRegistrations
803-
# A font-palette-values rule matching this node.
804-
optional CSSFontPaletteValuesRule cssFontPaletteValuesRule
805789
# A list of simple @rules matching this node or its pseudo-elements.
806790
optional array of CSSAtRule cssAtRules
807791
# Id of the first parent element that does not have display: contents.

types/protocol.d.ts

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5777,29 +5777,6 @@ export namespace Protocol {
57775777
syntax: string;
57785778
}
57795779

5780-
/**
5781-
* CSS font-palette-values rule representation.
5782-
*/
5783-
export interface CSSFontPaletteValuesRule {
5784-
/**
5785-
* The css style sheet identifier (absent for user agent stylesheet and user-specified
5786-
* stylesheet rules) this rule came from.
5787-
*/
5788-
styleSheetId?: StyleSheetId;
5789-
/**
5790-
* Parent stylesheet's origin.
5791-
*/
5792-
origin: StyleSheetOrigin;
5793-
/**
5794-
* Associated font palette name.
5795-
*/
5796-
fontPaletteName: Value;
5797-
/**
5798-
* Associated style declaration.
5799-
*/
5800-
style: CSSStyle;
5801-
}
5802-
58035780
export const enum CSSAtRuleType {
58045781
FontFace = 'font-face',
58055782
FontFeatureValues = 'font-feature-values',
@@ -6240,10 +6217,6 @@ export namespace Protocol {
62406217
* A list of CSS property registrations matching this node.
62416218
*/
62426219
cssPropertyRegistrations?: CSSPropertyRegistration[];
6243-
/**
6244-
* A font-palette-values rule matching this node.
6245-
*/
6246-
cssFontPaletteValuesRule?: CSSFontPaletteValuesRule;
62476220
/**
62486221
* A list of simple @rules matching this node or its pseudo-elements.
62496222
*/

0 commit comments

Comments
 (0)