Skip to content

Commit 470fb6a

Browse files
committed
Roll protocol to r1621552
1 parent e0946be commit 470fb6a

6 files changed

Lines changed: 22 additions & 32 deletions

File tree

changelog.md

Lines changed: 16 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11

22

3+
## Roll protocol to r1621552 — _2026-04-28T05:34:17.000Z_
4+
###### Diff: [`e0946be...0a44e87`](https://github.com/ChromeDevTools/devtools-protocol/compare/e0946be...0a44e87)
5+
6+
```diff
7+
@@ domains/DOM.pdl:44 @@ domain DOM
8+
after
9+
expand-icon
10+
picker-icon
11+
- interest-hint
12+
+ interest-button
13+
marker
14+
backdrop
15+
column
16+
```
17+
318
## Roll protocol to r1619965 — _2026-04-24T05:20:53.000Z_
4-
###### Diff: [`5d8fd1a...68fa403`](https://github.com/ChromeDevTools/devtools-protocol/compare/5d8fd1a...68fa403)
19+
###### Diff: [`5d8fd1a...e0946be`](https://github.com/ChromeDevTools/devtools-protocol/compare/5d8fd1a...e0946be)
520

621
```diff
722
@@ domains/Extensions.pdl:15 @@ experimental domain Extensions
@@ -42950,29 +42965,4 @@ index 4754f17c..8dad9c98 100644
4295042965
+
4295142966
# The SystemInfo domain defines methods and events for querying low-level system information.
4295242967
experimental domain SystemInfo
42953-
```
42954-
42955-
## Roll protocol to r1165779 — _2023-07-05T04:28:56.000Z_
42956-
###### Diff: [`a96ac10...02fc905`](https://github.com/ChromeDevTools/devtools-protocol/compare/a96ac10...02fc905)
42957-
42958-
```diff
42959-
@@ browser_protocol.pdl:1550 @@ experimental domain CSS
42960-
# @scope CSS at-rule array.
42961-
# The array enumerates @scope at-rules starting with the innermost one, going outwards.
42962-
experimental optional array of CSSScope scopes
42963-
+ # The array keeps the types of ancestor CSSRules from the innermost going outwards.
42964-
+ experimental optional array of CSSRuleType ruleTypes
42965-
+
42966-
+ # Enum indicating the type of a CSS rule, used to represent the order of a style rule's ancestors.
42967-
+ # This list only contains rule types that are collected during the ancestor rule collection.
42968-
+ experimental type CSSRuleType extends string
42969-
+ enum
42970-
+ MediaRule
42971-
+ SupportsRule
42972-
+ ContainerRule
42973-
+ LayerRule
42974-
+ ScopeRule
42975-
42976-
# CSS coverage information.
42977-
type RuleUsage extends object
4297842968
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7029,7 +7029,7 @@
70297029
"after",
70307030
"expand-icon",
70317031
"picker-icon",
7032-
"interest-hint",
7032+
"interest-button",
70337033
"marker",
70347034
"backdrop",
70357035
"column",

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

pdl/domains/DOM.pdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ domain DOM
4444
after
4545
expand-icon
4646
picker-icon
47-
interest-hint
47+
interest-button
4848
marker
4949
backdrop
5050
column

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6914,7 +6914,7 @@ export namespace Protocol {
69146914
/**
69156915
* Pseudo element type.
69166916
*/
6917-
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'expand-icon' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent');
6917+
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'expand-icon' | 'picker-icon' | 'interest-button' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent');
69186918

69196919
/**
69206920
* Shadow root type.

0 commit comments

Comments
 (0)