Skip to content

Commit 60a842d

Browse files
committed
Roll protocol to r1512837
1 parent f2eea64 commit 60a842d

File tree

6 files changed

+34
-18
lines changed

6 files changed

+34
-18
lines changed

changelog.md

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

22

3+
## Roll protocol to r1512837 — _2025-09-09T04:31:23.000Z_
4+
###### Diff: [`f2eea64...7729820`](https://github.com/ChromeDevTools/devtools-protocol/compare/f2eea64...7729820)
5+
6+
```diff
7+
@@ domains/Preload.pdl:40 @@ experimental domain Preload
8+
optional RuleSetErrorType errorType
9+
# TODO(https://crbug.com/1425354): Replace this property with structured error.
10+
deprecated optional string errorMessage
11+
+ # For more details, see:
12+
+ # https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
13+
+ optional string tag
14+
15+
type RuleSetErrorType extends string
16+
enum
17+
```
18+
319
## Roll protocol to r1511308 — _2025-09-05T04:31:05.000Z_
4-
###### Diff: [`bb9208f...0373139`](https://github.com/ChromeDevTools/devtools-protocol/compare/bb9208f...0373139)
20+
###### Diff: [`bb9208f...f2eea64`](https://github.com/ChromeDevTools/devtools-protocol/compare/bb9208f...f2eea64)
521

622
```diff
723
@@ domains/PWA.pdl:53 @@ experimental domain PWA
@@ -41930,18 +41946,4 @@ index d4102f5c..6285d9b6 100644
4193041946
# Whether the result should contain `webDriverValue`, serialized according to
4193141947
# https://w3c.github.io/webdriver-bidi. This is mutually exclusive with `returnByValue`, but
4193241948
# resulting `objectId` is still provided.
41933-
```
41934-
41935-
## Roll protocol to r1085790 — _2022-12-21T04:28:10.000Z_
41936-
###### Diff: [`9e8e363...56c97c0`](https://github.com/ChromeDevTools/devtools-protocol/compare/9e8e363...56c97c0)
41937-
41938-
```diff
41939-
@@ browser_protocol.pdl:8553 @@ domain Page
41940-
ActivationNavigationParameterMismatch
41941-
ActivatedInBackground
41942-
EmbedderHostDisallowed
41943-
+ ActivationNavigationDestroyedBeforeSuccess
41944-
41945-
# Fired when a prerender attempt is completed.
41946-
experimental event prerenderAttemptCompleted
4194741949
```

json/browser_protocol.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24021,6 +24021,12 @@
2402124021
"deprecated": true,
2402224022
"optional": true,
2402324023
"type": "string"
24024+
},
24025+
{
24026+
"name": "tag",
24027+
"description": "For more details, see:\nhttps://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md",
24028+
"optional": true,
24029+
"type": "string"
2402424030
}
2402524031
]
2402624032
},

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

pdl/domains/Preload.pdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ experimental domain Preload
4040
optional RuleSetErrorType errorType
4141
# TODO(https://crbug.com/1425354): Replace this property with structured error.
4242
deprecated optional string errorMessage
43+
# For more details, see:
44+
# https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
45+
optional string tag
4346

4447
type RuleSetErrorType extends string
4548
enum

types/protocol.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17996,6 +17996,11 @@ export namespace Protocol {
1799617996
* @deprecated
1799717997
*/
1799817998
errorMessage?: string;
17999+
/**
18000+
* For more details, see:
18001+
* https://github.com/WICG/nav-speculation/blob/main/speculation-rules-tags.md
18002+
*/
18003+
tag?: string;
1799918004
}
1800018005

1800118006
export type RuleSetErrorType = ('SourceIsNotJsonObject' | 'InvalidRulesSkipped' | 'InvalidRulesetLevelTag');

0 commit comments

Comments
 (0)