Skip to content

Commit

Permalink
Roll protocol to r1403386
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Jan 8, 2025
1 parent 7757e29 commit d212a6d
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 9 deletions.
32 changes: 31 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,37 @@


## Roll protocol to r1403386 — _2025-01-08T04:29:00.000Z_
###### Diff: [`7757e29...7a91c3b`](https://github.com/ChromeDevTools/devtools-protocol/compare/7757e29...7a91c3b)

```diff
@@ browser_protocol.pdl:992 @@ experimental domain Audits
InteractiveContentOptionChild
InteractiveContentLegendChild

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

-
type StyleSheetLoadingIssueReason extends string
enum
LateImportRule
@@ -10261,7 +10260,6 @@ experimental domain Storage
# Enum of possible storage types.
type StorageType extends string
enum
- appcache
cookies
file_systems
indexeddb
```

## Roll protocol to r1402790 — _2025-01-07T04:28:42.000Z_
###### Diff: [`9d48b99...efa121f`](https://github.com/ChromeDevTools/devtools-protocol/compare/9d48b99...efa121f)
###### Diff: [`9d48b99...7757e29`](https://github.com/ChromeDevTools/devtools-protocol/compare/9d48b99...7757e29)

```diff
@@ browser_protocol.pdl:2327 @@ experimental domain CSS
Expand Down
3 changes: 1 addition & 2 deletions json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -1898,7 +1898,7 @@
},
{
"id": "SelectElementAccessibilityIssueDetails",
"description": "This isue warns about errors in the select element content model.",
"description": "This issue warns about errors in the select element content model.",
"type": "object",
"properties": [
{
Expand Down Expand Up @@ -21762,7 +21762,6 @@
"description": "Enum of possible storage types.",
"type": "string",
"enum": [
"appcache",
"cookies",
"file_systems",
"indexeddb",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1402790",
"version": "0.0.1403386",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
4 changes: 1 addition & 3 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -992,14 +992,13 @@ experimental domain Audits
InteractiveContentOptionChild
InteractiveContentLegendChild

# This isue warns about errors in the select element content model.
# This issue warns about errors in the select element content model.
type SelectElementAccessibilityIssueDetails extends object
properties
DOM.BackendNodeId nodeId
SelectElementAccessibilityIssueReason selectElementAccessibilityIssueReason
boolean hasDisallowedAttributes


type StyleSheetLoadingIssueReason extends string
enum
LateImportRule
Expand Down Expand Up @@ -10261,7 +10260,6 @@ experimental domain Storage
# Enum of possible storage types.
type StorageType extends string
enum
appcache
cookies
file_systems
indexeddb
Expand Down
4 changes: 2 additions & 2 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3654,7 +3654,7 @@ export namespace Protocol {
export type SelectElementAccessibilityIssueReason = ('DisallowedSelectChild' | 'DisallowedOptGroupChild' | 'NonPhrasingContentOptionChild' | 'InteractiveContentOptionChild' | 'InteractiveContentLegendChild');

/**
* This isue warns about errors in the select element content model.
* This issue warns about errors in the select element content model.
*/
export interface SelectElementAccessibilityIssueDetails {
nodeId: DOM.BackendNodeId;
Expand Down Expand Up @@ -16032,7 +16032,7 @@ export namespace Protocol {
/**
* Enum of possible storage types.
*/
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');
export type StorageType = ('cookies' | 'file_systems' | 'indexeddb' | 'local_storage' | 'shader_cache' | 'websql' | 'service_workers' | 'cache_storage' | 'interest_groups' | 'shared_storage' | 'storage_buckets' | 'all' | 'other');

/**
* Usage for a storage type.
Expand Down

0 comments on commit d212a6d

Please sign in to comment.