Skip to content

Commit 9f2ed89

Browse files
committed
Roll protocol to r1526665
1 parent 0d43ecd commit 9f2ed89

File tree

8 files changed

+34
-23
lines changed

8 files changed

+34
-23
lines changed

changelog.md

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

22

3+
## Roll protocol to r1526665 — _2025-10-08T04:31:07.000Z_
4+
###### Diff: [`0d43ecd...4c1c3f3`](https://github.com/ChromeDevTools/devtools-protocol/compare/0d43ecd...4c1c3f3)
5+
6+
```diff
7+
@@ domains/Network.pdl:1129 @@ domain Network
8+
# WebRTC packetReordering feature.
9+
experimental optional boolean packetReordering
10+
11+
- # Activates emulation of network conditions for individual requests using URL match patterns.
12+
+ # Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
13+
+ # Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
14+
+ # explicitly modify `navigator` behavior.
15+
experimental command emulateNetworkConditionsByRule
16+
parameters
17+
# True to emulate internet disconnection.
18+
```
19+
320
## Roll protocol to r1526016 — _2025-10-07T04:31:13.000Z_
4-
###### Diff: [`a73a111...cce2fe7`](https://github.com/ChromeDevTools/devtools-protocol/compare/a73a111...cce2fe7)
21+
###### Diff: [`a73a111...0d43ecd`](https://github.com/ChromeDevTools/devtools-protocol/compare/a73a111...0d43ecd)
522

623
```diff
724
@@ domains/Browser.pdl:103 @@ domain Browser
@@ -42077,20 +42094,6 @@ index d4102f5c..6285d9b6 100644
4207742094
FormAriaLabelledByToNonExistingId
4207842095
+ FormInputAssignedAutocompleteValueToIdOrNameAttributeError
4207942096

42080-
# Depending on the concrete errorType, different properties are set.
42081-
type GenericIssueDetails extends object
42082-
```
42083-
42084-
## Roll protocol to r1098258 — _2023-01-28T04:27:44.000Z_
42085-
###### Diff: [`a73bac7...58bc3b6`](https://github.com/ChromeDevTools/devtools-protocol/compare/a73bac7...58bc3b6)
42086-
42087-
```diff
42088-
@@ browser_protocol.pdl:748 @@ experimental domain Audits
42089-
FormInputWithNoLabelError
42090-
FormAutocompleteAttributeEmptyError
42091-
FormEmptyIdAndNameAttributesForInputError
42092-
+ FormAriaLabelledByToNonExistingId
42093-
4209442097
# Depending on the concrete errorType, different properties are set.
4209542098
type GenericIssueDetails extends object
4209642099
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17272,7 +17272,7 @@
1727217272
},
1727317273
{
1727417274
"name": "emulateNetworkConditionsByRule",
17275-
"description": "Activates emulation of network conditions for individual requests using URL match patterns.",
17275+
"description": "Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated\nNetwork.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to\nexplicitly modify `navigator` behavior.",
1727617276
"experimental": true,
1727717277
"parameters": [
1727817278
{

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.1526016",
3+
"version": "0.0.1526665",
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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,9 @@ domain Network
11291129
# WebRTC packetReordering feature.
11301130
experimental optional boolean packetReordering
11311131

1132-
# Activates emulation of network conditions for individual requests using URL match patterns.
1132+
# Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
1133+
# Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
1134+
# explicitly modify `navigator` behavior.
11331135
experimental command emulateNetworkConditionsByRule
11341136
parameters
11351137
# True to emulate internet disconnection.

types/protocol-mapping.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4175,7 +4175,9 @@ export namespace ProtocolMapping {
41754175
returnType: void;
41764176
};
41774177
/**
4178-
* Activates emulation of network conditions for individual requests using URL match patterns.
4178+
* Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
4179+
* Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
4180+
* explicitly modify `navigator` behavior.
41794181
* @experimental
41804182
*/
41814183
'Network.emulateNetworkConditionsByRule': {

types/protocol-proxy-api.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3039,7 +3039,9 @@ export namespace ProtocolProxyApi {
30393039
emulateNetworkConditions(params: Protocol.Network.EmulateNetworkConditionsRequest): Promise<void>;
30403040

30413041
/**
3042-
* Activates emulation of network conditions for individual requests using URL match patterns.
3042+
* Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
3043+
* Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
3044+
* explicitly modify `navigator` behavior.
30433045
* @experimental
30443046
*/
30453047
emulateNetworkConditionsByRule(params: Protocol.Network.EmulateNetworkConditionsByRuleRequest): Promise<Protocol.Network.EmulateNetworkConditionsByRuleResponse>;

types/protocol-tests-proxy-api.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3207,7 +3207,9 @@ export namespace ProtocolTestsProxyApi {
32073207
emulateNetworkConditions(params: Protocol.Network.EmulateNetworkConditionsRequest): Promise<{id: number, result: void, sessionId: string}>;
32083208

32093209
/**
3210-
* Activates emulation of network conditions for individual requests using URL match patterns.
3210+
* Activates emulation of network conditions for individual requests using URL match patterns. Unlike the deprecated
3211+
* Network.emulateNetworkConditions this method does not affect `navigator` state. Use Network.overrideNetworkState to
3212+
* explicitly modify `navigator` behavior.
32113213
* @experimental
32123214
*/
32133215
emulateNetworkConditionsByRule(params: Protocol.Network.EmulateNetworkConditionsByRuleRequest): Promise<{id: number, result: Protocol.Network.EmulateNetworkConditionsByRuleResponse, sessionId: string}>;

0 commit comments

Comments
 (0)