Skip to content

Commit 1538d6c

Browse files
committed
Roll protocol to r1387316
1 parent a49a587 commit 1538d6c

File tree

5 files changed

+20
-18
lines changed

5 files changed

+20
-18
lines changed

changelog.md

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

22

3+
## Roll protocol to r1387316 — _2024-11-24T04:29:22.000Z_
4+
###### Diff: [`a49a587...41a3616`](https://github.com/ChromeDevTools/devtools-protocol/compare/a49a587...41a3616)
5+
6+
```diff
7+
@@ browser_protocol.pdl:2733 @@ domain DOM
8+
enum
9+
first-line
10+
first-letter
11+
- check
12+
+ checkmark
13+
before
14+
after
15+
select-arrow
16+
```
17+
318
## Roll protocol to r1387216 — _2024-11-23T04:29:30.000Z_
4-
###### Diff: [`4183867...296e3d3`](https://github.com/ChromeDevTools/devtools-protocol/compare/4183867...296e3d3)
19+
###### Diff: [`4183867...a49a587`](https://github.com/ChromeDevTools/devtools-protocol/compare/4183867...a49a587)
520

621
```diff
722
@@ browser_protocol.pdl:2749 @@ domain DOM
@@ -12234,17 +12249,4 @@ index 18cf0c7..8e43695 100644
1223412249

1223512250
experimental type CrossOriginOpenerPolicyStatus extends object
1223612251
properties
12237-
```
12238-
12239-
## Roll protocol to r1008748 — _2022-05-30T07:15:13.000Z_
12240-
###### Diff: [`bc53a73...a56eb21`](https://github.com/ChromeDevTools/devtools-protocol/compare/bc53a73...a56eb21)
12241-
12242-
```diff
12243-
@@ browser_protocol.pdl:8248 @@ domain Page
12244-
ContentMediaDevicesDispatcherHost
12245-
ContentWebBluetooth
12246-
ContentWebUSB
12247-
- ContentMediaSession
12248-
ContentMediaSessionService
12249-
ContentScreenReader
1225012252
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5751,7 +5751,7 @@
57515751
"enum": [
57525752
"first-line",
57535753
"first-letter",
5754-
"check",
5754+
"checkmark",
57555755
"before",
57565756
"after",
57575757
"select-arrow",

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.1387216",
3+
"version": "0.0.1387316",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2733,7 +2733,7 @@ domain DOM
27332733
enum
27342734
first-line
27352735
first-letter
2736-
check
2736+
checkmark
27372737
before
27382738
after
27392739
select-arrow

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6082,7 +6082,7 @@ export namespace Protocol {
60826082
/**
60836083
* Pseudo element type.
60846084
*/
6085-
export type PseudoType = ('first-line' | 'first-letter' | 'check' | 'before' | 'after' | 'select-arrow' | '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-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker');
6085+
export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'select-arrow' | '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-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker');
60866086

60876087
/**
60886088
* Shadow root type.

0 commit comments

Comments
 (0)