Skip to content

Commit 58bb362

Browse files
committed
Roll protocol to r1591961
1 parent c217062 commit 58bb362

File tree

6 files changed

+34
-47
lines changed

6 files changed

+34
-47
lines changed

changelog.md

Lines changed: 25 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
11

22

3+
## Roll protocol to r1591961 — _2026-02-28T04:43:52.000Z_
4+
###### Diff: [`c217062...de27541`](https://github.com/ChromeDevTools/devtools-protocol/compare/c217062...de27541)
5+
6+
```diff
7+
@@ domains/Network.pdl:166 @@ domain Network
8+
High
9+
VeryHigh
10+
11+
- # The render blocking behavior of a resource request.
12+
+ # The render-blocking behavior of a resource request.
13+
experimental type RenderBlockingBehavior extends string
14+
enum
15+
Blocking
16+
@@ -1477,7 +1477,7 @@ domain Network
17+
optional Page.FrameId frameId
18+
# Whether the request is initiated by a user gesture. Defaults to false.
19+
optional boolean hasUserGesture
20+
- # The render blocking behavior of the request.
21+
+ # The render-blocking behavior of the request.
22+
experimental optional RenderBlockingBehavior renderBlockingBehavior
23+
24+
# Fired when resource loading priority is changed
25+
```
26+
327
## Roll protocol to r1591319 — _2026-02-27T04:56:42.000Z_
4-
###### Diff: [`d5ffdaf...029bb84`](https://github.com/ChromeDevTools/devtools-protocol/compare/d5ffdaf...029bb84)
28+
###### Diff: [`d5ffdaf...c217062`](https://github.com/ChromeDevTools/devtools-protocol/compare/d5ffdaf...c217062)
529

630
```diff
731
@@ domains/Emulation.pdl:617 @@ domain Emulation
@@ -42286,41 +42310,4 @@ index 0dbdc01d..7a3c772c 100644
4228642310
optional LowTextContrastIssueDetails lowTextContrastIssueDetails
4228742311
optional CorsIssueDetails corsIssueDetails
4228842312
optional AttributionReportingIssueDetails attributionReportingIssueDetails
42289-
```
42290-
42291-
## Roll protocol to r1139346 — _2023-05-04T04:26:49.000Z_
42292-
###### Diff: [`5b4da4d...3a37ac7`](https://github.com/ChromeDevTools/devtools-protocol/compare/5b4da4d...3a37ac7)
42293-
42294-
```diff
42295-
@@ browser_protocol.pdl:944 @@ experimental domain Audits
42296-
parameters
42297-
InspectorIssue issue
42298-
42299-
+# Defines commands and events for Autofill.
42300-
+experimental domain Autofill
42301-
+ type CreditCard extends object
42302-
+ properties
42303-
+ # 16-digit credit card number.
42304-
+ string number
42305-
+ # Name of the credit card owner.
42306-
+ string name
42307-
+ # 2-digit expiry month.
42308-
+ string expiryMonth
42309-
+ # 4-digit expiry year.
42310-
+ string expiryYear
42311-
+ # 3-digit card verification code.
42312-
+ string cvc
42313-
+
42314-
+ # Trigger autofill on a form identified by the fieldId.
42315-
+ # If the field and related form cannot be autofilled, returns an error.
42316-
+ command trigger
42317-
+ parameters
42318-
+ # Identifies a field that serves as an anchor for autofill.
42319-
+ DOM.BackendNodeId fieldId
42320-
+ # Credit card information to fill out the form. Credit card data is not saved.
42321-
+ CreditCard card
42322-
+
42323-
# Defines events for background web platform features.
42324-
experimental domain BackgroundService
42325-
# The Background Service that will be associated with the commands/events.
4232642313
```

json/browser_protocol.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15514,7 +15514,7 @@
1551415514
},
1551515515
{
1551615516
"id": "RenderBlockingBehavior",
15517-
"description": "The render blocking behavior of a resource request.",
15517+
"description": "The render-blocking behavior of a resource request.",
1551815518
"experimental": true,
1551915519
"type": "string",
1552015520
"enum": [
@@ -19024,7 +19024,7 @@
1902419024
},
1902519025
{
1902619026
"name": "renderBlockingBehavior",
19027-
"description": "The render blocking behavior of the request.",
19027+
"description": "The render-blocking behavior of the request.",
1902819028
"experimental": true,
1902919029
"optional": true,
1903019030
"$ref": "RenderBlockingBehavior"

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

pdl/domains/Network.pdl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ domain Network
166166
High
167167
VeryHigh
168168

169-
# The render blocking behavior of a resource request.
169+
# The render-blocking behavior of a resource request.
170170
experimental type RenderBlockingBehavior extends string
171171
enum
172172
Blocking
@@ -1477,7 +1477,7 @@ domain Network
14771477
optional Page.FrameId frameId
14781478
# Whether the request is initiated by a user gesture. Defaults to false.
14791479
optional boolean hasUserGesture
1480-
# The render blocking behavior of the request.
1480+
# The render-blocking behavior of the request.
14811481
experimental optional RenderBlockingBehavior renderBlockingBehavior
14821482

14831483
# Fired when resource loading priority is changed

types/protocol.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12424,7 +12424,7 @@ export namespace Protocol {
1242412424
export type ResourcePriority = ('VeryLow' | 'Low' | 'Medium' | 'High' | 'VeryHigh');
1242512425

1242612426
/**
12427-
* The render blocking behavior of a resource request.
12427+
* The render-blocking behavior of a resource request.
1242812428
* @experimental
1242912429
*/
1243012430
export type RenderBlockingBehavior = ('Blocking' | 'InBodyParserBlocking' | 'NonBlocking' | 'NonBlockingDynamic' | 'PotentiallyBlocking');
@@ -14822,7 +14822,7 @@ export namespace Protocol {
1482214822
*/
1482314823
hasUserGesture?: boolean;
1482414824
/**
14825-
* The render blocking behavior of the request.
14825+
* The render-blocking behavior of the request.
1482614826
* @experimental
1482714827
*/
1482814828
renderBlockingBehavior?: RenderBlockingBehavior;

0 commit comments

Comments
 (0)