Skip to content

Commit

Permalink
Roll protocol to r1148337
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed May 24, 2023
1 parent fb80158 commit 4f898ab
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 36 deletions.
50 changes: 15 additions & 35 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@


## Roll protocol to r1148337 — _2023-05-24T04:27:07.000Z_
###### Diff: [`fb80158...ebeeb6b`](https://github.com/ChromeDevTools/devtools-protocol/compare/`fb80158...ebeeb6b`)

```diff
@@ browser_protocol.pdl:5121 @@ domain Network
experimental number pushStart
# Time the server finished pushing request.
experimental number pushEnd
- # Started receiving response headers.
- experimental number receiveHeadersStart
# Finished receiving response headers.
number receiveHeadersEnd
```

## Roll protocol to r1147663 — _2023-05-23T04:26:36.000Z_
###### Diff: [`60a039d...e8ea7a6`](https://github.com/ChromeDevTools/devtools-protocol/compare/`60a039d...e8ea7a6`)
###### Diff: [`60a039d...fb80158`](https://github.com/ChromeDevTools/devtools-protocol/compare/`60a039d...fb80158`)

```diff
@@ browser_protocol.pdl:1382 @@ experimental domain CSS
Expand Down Expand Up @@ -10314,38 +10328,4 @@ index bd277eb..09c420e 100644
# Modifies the rule selector.
command setRuleSelector
parameters
```

## Roll protocol to r888392 — _2021-06-02T11:16:05.000Z_
###### Diff: [`564611d...bfcd0a3`](https://github.com/ChromeDevTools/devtools-protocol/compare/`564611d...bfcd0a3`)

```diff
@@ browser_protocol.pdl:1315 @@ experimental domain CSS
# Media list array (for rules involving media queries). The array enumerates media queries
# starting with the innermost one, going outwards.
optional array of CSSMedia media
- # Container query list array (for rules involving container queries).
- # The array enumerates container queries starting with the innermost one, going outwards.
- experimental optional array of CSSContainerQuery containerQueries

# CSS coverage information.
type RuleUsage extends object
@@ -1441,17 +1438,6 @@ experimental domain CSS
# Computed length of media query expression (if applicable).
optional number computedLength

- # CSS container query rule descriptor.
- experimental type CSSContainerQuery extends object
- properties
- # Container query text.
- string text
- # The associated rule header range in the enclosing stylesheet (if
- # available).
- optional SourceRange range
- # Identifier of the stylesheet containing this object (if exists).
- optional StyleSheetId styleSheetId
-
# Information about amount of glyphs that were rendered with given font.
type PlatformFontUsage extends object
properties
```
6 changes: 6 additions & 0 deletions json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -11199,6 +11199,12 @@
"experimental": true,
"type": "number"
},
{
"name": "receiveHeadersStart",
"description": "Started receiving response headers.",
"experimental": true,
"type": "number"
},
{
"name": "receiveHeadersEnd",
"description": "Finished receiving response headers.",
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.1147663",
"version": "0.0.1148337",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
2 changes: 2 additions & 0 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -5121,6 +5121,8 @@ domain Network
experimental number pushStart
# Time the server finished pushing request.
experimental number pushEnd
# Started receiving response headers.
experimental number receiveHeadersStart
# Finished receiving response headers.
number receiveHeadersEnd

Expand Down
4 changes: 4 additions & 0 deletions types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9676,6 +9676,10 @@ export namespace Protocol {
* Time the server finished pushing request.
*/
pushEnd: number;
/**
* Started receiving response headers.
*/
receiveHeadersStart: number;
/**
* Finished receiving response headers.
*/
Expand Down

0 comments on commit 4f898ab

Please sign in to comment.