Skip to content

Commit 0e79e39

Browse files
committed
Roll protocol to r1538951
1 parent b8a7fa7 commit 0e79e39

File tree

6 files changed

+19
-23
lines changed

6 files changed

+19
-23
lines changed

changelog.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11

22

3+
## Roll protocol to r1538951 — _2025-11-01T04:30:31.000Z_
4+
###### Diff: [`b8a7fa7...f0f57b7`](https://github.com/ChromeDevTools/devtools-protocol/compare/b8a7fa7...f0f57b7)
5+
6+
```diff
7+
@@ domains/Network.pdl:1797 @@ domain Network
8+
Allow
9+
BlockFromInsecureToMorePrivate
10+
WarnFromInsecureToMorePrivate
11+
- PreflightBlock
12+
- PreflightWarn
13+
PermissionBlock
14+
PermissionWarn
15+
```
16+
317
## Roll protocol to r1537100 — _2025-10-29T04:32:32.000Z_
4-
###### Diff: [`604a9f6...d3e13c1`](https://github.com/ChromeDevTools/devtools-protocol/compare/604a9f6...d3e13c1)
18+
###### Diff: [`604a9f6...b8a7fa7`](https://github.com/ChromeDevTools/devtools-protocol/compare/604a9f6...b8a7fa7)
519

620
```diff
721
@@ domains/SystemInfo.pdl:74 @@ experimental domain SystemInfo
@@ -42077,18 +42091,4 @@ index d4102f5c..6285d9b6 100644
4207742091
+ BlockedByTopLevelEsModuleChange
4207842092
# Exception details if any. Only present when `status` is `CompileError`.
4207942093
optional Runtime.ExceptionDetails exceptionDetails
42080-
```
42081-
42082-
## Roll protocol to r1102555 — _2023-02-08T04:29:03.000Z_
42083-
###### Diff: [`e088ea1...db5327b`](https://github.com/ChromeDevTools/devtools-protocol/compare/e088ea1...db5327b)
42084-
42085-
```diff
42086-
@@ browser_protocol.pdl:2556 @@ domain DOM
42087-
array of Quad quads
42088-
42089-
# Returns the root DOM node (and optionally the subtree) to the caller.
42090-
+ # Implicitly enables the DOM domain events for the current target.
42091-
command getDocument
42092-
parameters
42093-
# The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the
4209442094
```

json/browser_protocol.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16740,8 +16740,6 @@
1674016740
"Allow",
1674116741
"BlockFromInsecureToMorePrivate",
1674216742
"WarnFromInsecureToMorePrivate",
16743-
"PreflightBlock",
16744-
"PreflightWarn",
1674516743
"PermissionBlock",
1674616744
"PermissionWarn"
1674716745
]

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.1537100",
3+
"version": "0.0.1538951",
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: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1797,8 +1797,6 @@ domain Network
17971797
Allow
17981798
BlockFromInsecureToMorePrivate
17991799
WarnFromInsecureToMorePrivate
1800-
PreflightBlock
1801-
PreflightWarn
18021800
PermissionBlock
18031801
PermissionWarn
18041802

types/protocol.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13316,7 +13316,7 @@ export namespace Protocol {
1331613316
/**
1331713317
* @experimental
1331813318
*/
13319-
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PreflightBlock' | 'PreflightWarn' | 'PermissionBlock' | 'PermissionWarn');
13319+
export type PrivateNetworkRequestPolicy = ('Allow' | 'BlockFromInsecureToMorePrivate' | 'WarnFromInsecureToMorePrivate' | 'PermissionBlock' | 'PermissionWarn');
1332013320

1332113321
/**
1332213322
* @experimental

0 commit comments

Comments
 (0)