Skip to content

Commit 2d019e7

Browse files
committed
Roll protocol to r1674729
1 parent 41535d3 commit 2d019e7

6 files changed

Lines changed: 33 additions & 36 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1674729 — _2026-08-06T05:29:04.000Z_
4+
###### Diff: [`41535d3...aeb64bf`](https://github.com/ChromeDevTools/devtools-protocol/compare/41535d3...aeb64bf)
5+
6+
```diff
7+
@@ js_protocol.pdl:212 @@ domain Debugger
8+
optional boolean throwOnSideEffect
9+
# Terminate execution after timing out (number of milliseconds).
10+
experimental optional Runtime.TimeDelta timeout
11+
+ # Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
12+
+ experimental optional integer scopeNumber
13+
returns
14+
# Object wrapper for the evaluation result.
15+
Runtime.RemoteObject result
16+
```
17+
318
## Roll protocol to r1673900 — _2026-08-05T05:28:38.000Z_
4-
###### Diff: [`7283814...9c91189`](https://github.com/ChromeDevTools/devtools-protocol/compare/7283814...9c91189)
19+
###### Diff: [`7283814...41535d3`](https://github.com/ChromeDevTools/devtools-protocol/compare/7283814...41535d3)
520

621
```diff
722
@@ domains/DOM.pdl:827 @@ domain DOM
@@ -43157,36 +43172,4 @@ index 4754f17c..8dad9c98 100644
4315743172
# duration in seconds
4315843173
integer aggregatableReportWindow
4315943174
AttributionReportingSourceType type
43160-
```
43161-
43162-
## Roll protocol to r1219864 — _2023-11-04T04:26:10.000Z_
43163-
###### Diff: [`5e6cb44...2860a80`](https://github.com/ChromeDevTools/devtools-protocol/compare/5e6cb44...2860a80)
43164-
43165-
```diff
43166-
@@ browser_protocol.pdl:827 @@ experimental domain Audits
43167-
IdTokenHttpNotFound
43168-
IdTokenNoResponse
43169-
IdTokenInvalidResponse
43170-
+ IdTokenIdpErrorResponse
43171-
+ IdTokenCrossSiteIdpErrorResponse
43172-
IdTokenInvalidRequest
43173-
IdTokenInvalidContentType
43174-
ErrorIdToken
43175-
@@ -1249,7 +1251,7 @@ domain Browser
43176-
prompt
43177-
43178-
# Definition of PermissionDescriptor defined in the Permissions API:
43179-
- # https://w3c.github.io/permissions/#dictdef-permissiondescriptor.
43180-
+ # https://w3c.github.io/permissions/#dom-permissiondescriptor.
43181-
experimental type PermissionDescriptor extends object
43182-
properties
43183-
# Name of permission.
43184-
@@ -7627,6 +7629,7 @@ domain Page
43185-
unload
43186-
usb
43187-
vertical-scroll
43188-
+ web-printing
43189-
web-share
43190-
# Alias for 'window-placement' (crbug.com/1328581).
43191-
window-management
4319243175
```

json/js_protocol.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,13 @@
507507
"experimental": true,
508508
"optional": true,
509509
"$ref": "Runtime.TimeDelta"
510+
},
511+
{
512+
"name": "scopeNumber",
513+
"description": "Specifies the scope number to evaluate the expression in (default: 0, innermost scope).",
514+
"experimental": true,
515+
"optional": true,
516+
"type": "integer"
510517
}
511518
],
512519
"returns": [

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

pdl/js_protocol.pdl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ domain Debugger
212212
optional boolean throwOnSideEffect
213213
# Terminate execution after timing out (number of milliseconds).
214214
experimental optional Runtime.TimeDelta timeout
215+
# Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
216+
experimental optional integer scopeNumber
215217
returns
216218
# Object wrapper for the evaluation result.
217219
Runtime.RemoteObject result

types/protocol.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,11 @@ export namespace Protocol {
381381
* @experimental
382382
*/
383383
timeout?: Runtime.TimeDelta;
384+
/**
385+
* Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
386+
* @experimental
387+
*/
388+
scopeNumber?: integer;
384389
}
385390

386391
export interface EvaluateOnCallFrameResponse {

0 commit comments

Comments
 (0)