Skip to content

Commit d212a6d

Browse files
committed
Roll protocol to r1403386
1 parent 7757e29 commit d212a6d

File tree

5 files changed

+36
-9
lines changed

5 files changed

+36
-9
lines changed

changelog.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,37 @@
11

22

3+
## Roll protocol to r1403386 — _2025-01-08T04:29:00.000Z_
4+
###### Diff: [`7757e29...7a91c3b`](https://github.com/ChromeDevTools/devtools-protocol/compare/7757e29...7a91c3b)
5+
6+
```diff
7+
@@ browser_protocol.pdl:992 @@ experimental domain Audits
8+
InteractiveContentOptionChild
9+
InteractiveContentLegendChild
10+
11+
- # This isue warns about errors in the select element content model.
12+
+ # This issue warns about errors in the select element content model.
13+
type SelectElementAccessibilityIssueDetails extends object
14+
properties
15+
DOM.BackendNodeId nodeId
16+
SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
17+
boolean hasDisallowedAttributes
18+
19+
-
20+
type StyleSheetLoadingIssueReason extends string
21+
enum
22+
LateImportRule
23+
@@ -10261,7 +10260,6 @@ experimental domain Storage
24+
# Enum of possible storage types.
25+
type StorageType extends string
26+
enum
27+
- appcache
28+
cookies
29+
file_systems
30+
indexeddb
31+
```
32+
333
## Roll protocol to r1402790 — _2025-01-07T04:28:42.000Z_
4-
###### Diff: [`9d48b99...efa121f`](https://github.com/ChromeDevTools/devtools-protocol/compare/9d48b99...efa121f)
34+
###### Diff: [`9d48b99...7757e29`](https://github.com/ChromeDevTools/devtools-protocol/compare/9d48b99...7757e29)
535

636
```diff
737
@@ browser_protocol.pdl:2327 @@ experimental domain CSS

json/browser_protocol.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1898,7 +1898,7 @@
18981898
},
18991899
{
19001900
"id": "SelectElementAccessibilityIssueDetails",
1901-
"description": "This isue warns about errors in the select element content model.",
1901+
"description": "This issue warns about errors in the select element content model.",
19021902
"type": "object",
19031903
"properties": [
19041904
{
@@ -21762,7 +21762,6 @@
2176221762
"description": "Enum of possible storage types.",
2176321763
"type": "string",
2176421764
"enum": [
21765-
"appcache",
2176621765
"cookies",
2176721766
"file_systems",
2176821767
"indexeddb",

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.1402790",
3+
"version": "0.0.1403386",
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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -992,14 +992,13 @@ experimental domain Audits
992992
InteractiveContentOptionChild
993993
InteractiveContentLegendChild
994994

995-
# This isue warns about errors in the select element content model.
995+
# This issue warns about errors in the select element content model.
996996
type SelectElementAccessibilityIssueDetails extends object
997997
properties
998998
DOM.BackendNodeId nodeId
999999
SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
10001000
boolean hasDisallowedAttributes
10011001

1002-
10031002
type StyleSheetLoadingIssueReason extends string
10041003
enum
10051004
LateImportRule
@@ -10261,7 +10260,6 @@ experimental domain Storage
1026110260
# Enum of possible storage types.
1026210261
type StorageType extends string
1026310262
enum
10264-
appcache
1026510263
cookies
1026610264
file_systems
1026710265
indexeddb

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3654,7 +3654,7 @@ export namespace Protocol {
36543654
export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');
36553655

36563656
/**
3657-
* This isue warns about errors in the select element content model.
3657+
* This issue warns about errors in the select element content model.
36583658
*/
36593659
export interface SelectElementAccessibilityIssueDetails {
36603660
nodeId: DOM.BackendNodeId;
@@ -16032,7 +16032,7 @@ export namespace Protocol {
1603216032
/**
1603316033
* Enum of possible storage types.
1603416034
*/
16035-
export type StorageType = ('appcache' | 'cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
16035+
export type StorageType = ('cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');
1603616036

1603716037
/**
1603816038
* Usage for a storage type.

0 commit comments

Comments
 (0)