Skip to content

Commit f44c6e0

Browse files
committed
Roll protocol to r1568893
1 parent d0d2cf0 commit f44c6e0

File tree

7 files changed

+75
-104
lines changed

7 files changed

+75
-104
lines changed

changelog.md

Lines changed: 69 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,75 @@
11

22

3+
## Roll protocol to r1568893 — _2026-01-14T04:37:57.000Z_
4+
###### Diff: [`d0d2cf0...20bc5b5`](https://github.com/ChromeDevTools/devtools-protocol/compare/d0d2cf0...20bc5b5)
5+
6+
```diff
7+
@@ domains/Audits.pdl:34 @@ experimental domain Audits
8+
ExcludeSameSiteNoneInsecure
9+
ExcludeSameSiteLax
10+
ExcludeSameSiteStrict
11+
- ExcludeInvalidSameParty
12+
- ExcludeSamePartyCrossPartyContext
13+
ExcludeDomainNonASCII
14+
ExcludeThirdPartyCookieBlockedInFirstPartySet
15+
ExcludeThirdPartyPhaseout
16+
diff --git a/pdl/domains/Network.pdl b/pdl/domains/Network.pdl
17+
index 030fc076..c2cd6c1f 100644
18+
--- a/pdl/domains/Network.pdl
19+
+++ b/pdl/domains/Network.pdl
20+
@@ -622,8 +622,6 @@ domain Network
21+
optional CookieSameSite sameSite
22+
# Cookie Priority
23+
experimental CookiePriority priority
24+
- # True if cookie is SameParty.
25+
- experimental deprecated boolean sameParty
26+
# Cookie source scheme type.
27+
experimental CookieSourceScheme sourceScheme
28+
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
29+
@@ -687,12 +685,6 @@ domain Network
30+
# value.
31+
# This is the "Schemeful Same-Site" version of the blocked reason.
32+
SchemefulSameSiteUnspecifiedTreatedAsLax
33+
- # The cookie had the "SameParty" attribute but came from a cross-party response.
34+
- SamePartyFromCrossPartyContext
35+
- # The cookie had the "SameParty" attribute but did not specify the "Secure" attribute
36+
- # (which is required in order to use "SameParty"); or specified the "SameSite=Strict"
37+
- # attribute (which is forbidden when using "SameParty").
38+
- SamePartyConflictsWithOtherAttributes
39+
# The cookie's name/value pair size exceeded the size limit defined in
40+
# RFC6265bis.
41+
NameValuePairExceedsMaxSize
42+
@@ -749,8 +741,6 @@ domain Network
43+
# value.
44+
# This is the "Schemeful Same-Site" version of the blocked reason.
45+
SchemefulSameSiteUnspecifiedTreatedAsLax
46+
- # The cookie had the "SameParty" attribute and the request was made from a cross-party context.
47+
- SamePartyFromCrossPartyContext
48+
# The cookie's name/value pair size exceeded the size limit defined in
49+
# RFC6265bis.
50+
NameValuePairExceedsMaxSize
51+
@@ -847,8 +837,6 @@ domain Network
52+
optional TimeSinceEpoch expires
53+
# Cookie Priority.
54+
experimental optional CookiePriority priority
55+
- # True if cookie is SameParty.
56+
- experimental optional boolean sameParty
57+
# Cookie source scheme type.
58+
experimental optional CookieSourceScheme sourceScheme
59+
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
60+
@@ -1317,8 +1305,6 @@ domain Network
61+
optional TimeSinceEpoch expires
62+
# Cookie Priority type.
63+
experimental optional CookiePriority priority
64+
- # True if cookie is SameParty.
65+
- experimental optional boolean sameParty
66+
# Cookie source scheme type.
67+
experimental optional CookieSourceScheme sourceScheme
68+
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
69+
```
70+
371
## Roll protocol to r1568225 — _2026-01-13T04:34:57.000Z_
4-
###### Diff: [`411079d...c166df1`](https://github.com/ChromeDevTools/devtools-protocol/compare/411079d...c166df1)
72+
###### Diff: [`411079d...d0d2cf0`](https://github.com/ChromeDevTools/devtools-protocol/compare/411079d...d0d2cf0)
573

674
```diff
775
@@ domains/Network.pdl:1216 @@ domain Network
@@ -42200,43 +42268,4 @@ index 0dbdc01d..7a3c772c 100644
4220042268

4220142269
# This issue tracks information needed to print a deprecation message.
4220242270
# https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
42203-
```
42204-
42205-
## Roll protocol to r1122837 — _2023-03-28T04:27:31.000Z_
42206-
###### Diff: [`0b187a3...bab8b36`](https://github.com/ChromeDevTools/devtools-protocol/compare/0b187a3...bab8b36)
42207-
42208-
```diff
42209-
@@ browser_protocol.pdl:1669 @@ experimental domain CSS
42210-
# Available variation settings (a.k.a. "axes").
42211-
optional array of FontVariationAxis fontVariationAxes
42212-
42213-
+ # CSS try rule representation.
42214-
+ type CSSTryRule extends object
42215-
+ properties
42216-
+ # The css style sheet identifier (absent for user agent stylesheet and user-specified
42217-
+ # stylesheet rules) this rule came from.
42218-
+ optional StyleSheetId styleSheetId
42219-
+ # Parent stylesheet's origin.
42220-
+ StyleSheetOrigin origin
42221-
+ # Associated style declaration.
42222-
+ optional CSSStyle style
42223-
+
42224-
+ # CSS position-fallback rule representation.
42225-
+ type CSSPositionFallbackRule extends object
42226-
+ properties
42227-
+ Value name
42228-
+ # List of keyframes.
42229-
+ array of CSSTryRule tryRules
42230-
+
42231-
# CSS keyframes rule representation.
42232-
type CSSKeyframesRule extends object
42233-
properties
42234-
@@ -1802,6 +1820,8 @@ experimental domain CSS
42235-
optional array of InheritedPseudoElementMatches inheritedPseudoElements
42236-
# A list of CSS keyframed animations matching this node.
42237-
optional array of CSSKeyframesRule cssKeyframesRules
42238-
+ # A list of CSS position fallbacks matching this node.
42239-
+ optional array of CSSPositionFallbackRule cssPositionFallbackRules
42240-
# Id of the first parent element that does not have display: contents.
42241-
experimental optional DOM.NodeId parentLayoutNodeId
4224242271
```

json/browser_protocol.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,8 +1063,6 @@
10631063
"ExcludeSameSiteNoneInsecure",
10641064
"ExcludeSameSiteLax",
10651065
"ExcludeSameSiteStrict",
1066-
"ExcludeInvalidSameParty",
1067-
"ExcludeSamePartyCrossPartyContext",
10681066
"ExcludeDomainNonASCII",
10691067
"ExcludeThirdPartyCookieBlockedInFirstPartySet",
10701068
"ExcludeThirdPartyPhaseout",
@@ -16129,13 +16127,6 @@
1612916127
"experimental": true,
1613016128
"$ref": "CookiePriority"
1613116129
},
16132-
{
16133-
"name": "sameParty",
16134-
"description": "True if cookie is SameParty.",
16135-
"experimental": true,
16136-
"deprecated": true,
16137-
"type": "boolean"
16138-
},
1613916130
{
1614016131
"name": "sourceScheme",
1614116132
"description": "Cookie source scheme type.",
@@ -16187,8 +16178,6 @@
1618716178
"SchemefulSameSiteStrict",
1618816179
"SchemefulSameSiteLax",
1618916180
"SchemefulSameSiteUnspecifiedTreatedAsLax",
16190-
"SamePartyFromCrossPartyContext",
16191-
"SamePartyConflictsWithOtherAttributes",
1619216181
"NameValuePairExceedsMaxSize",
1619316182
"DisallowedCharacter",
1619416183
"NoCookieContent"
@@ -16214,7 +16203,6 @@
1621416203
"SchemefulSameSiteStrict",
1621516204
"SchemefulSameSiteLax",
1621616205
"SchemefulSameSiteUnspecifiedTreatedAsLax",
16217-
"SamePartyFromCrossPartyContext",
1621816206
"NameValuePairExceedsMaxSize",
1621916207
"PortMismatch",
1622016208
"SchemeMismatch",
@@ -16381,13 +16369,6 @@
1638116369
"optional": true,
1638216370
"$ref": "CookiePriority"
1638316371
},
16384-
{
16385-
"name": "sameParty",
16386-
"description": "True if cookie is SameParty.",
16387-
"experimental": true,
16388-
"optional": true,
16389-
"type": "boolean"
16390-
},
1639116372
{
1639216373
"name": "sourceScheme",
1639316374
"description": "Cookie source scheme type.",
@@ -18206,13 +18187,6 @@
1820618187
"optional": true,
1820718188
"$ref": "CookiePriority"
1820818189
},
18209-
{
18210-
"name": "sameParty",
18211-
"description": "True if cookie is SameParty.",
18212-
"experimental": true,
18213-
"optional": true,
18214-
"type": "boolean"
18215-
},
1821618190
{
1821718191
"name": "sourceScheme",
1821818192
"description": "Cookie source scheme type.",

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

pdl/domains/Audits.pdl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ experimental domain Audits
3434
ExcludeSameSiteNoneInsecure
3535
ExcludeSameSiteLax
3636
ExcludeSameSiteStrict
37-
ExcludeInvalidSameParty
38-
ExcludeSamePartyCrossPartyContext
3937
ExcludeDomainNonASCII
4038
ExcludeThirdPartyCookieBlockedInFirstPartySet
4139
ExcludeThirdPartyPhaseout

pdl/domains/Network.pdl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -622,8 +622,6 @@ domain Network
622622
optional CookieSameSite sameSite
623623
# Cookie Priority
624624
experimental CookiePriority priority
625-
# True if cookie is SameParty.
626-
experimental deprecated boolean sameParty
627625
# Cookie source scheme type.
628626
experimental CookieSourceScheme sourceScheme
629627
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
@@ -687,12 +685,6 @@ domain Network
687685
# value.
688686
# This is the "Schemeful Same-Site" version of the blocked reason.
689687
SchemefulSameSiteUnspecifiedTreatedAsLax
690-
# The cookie had the "SameParty" attribute but came from a cross-party response.
691-
SamePartyFromCrossPartyContext
692-
# The cookie had the "SameParty" attribute but did not specify the "Secure" attribute
693-
# (which is required in order to use "SameParty"); or specified the "SameSite=Strict"
694-
# attribute (which is forbidden when using "SameParty").
695-
SamePartyConflictsWithOtherAttributes
696688
# The cookie's name/value pair size exceeded the size limit defined in
697689
# RFC6265bis.
698690
NameValuePairExceedsMaxSize
@@ -749,8 +741,6 @@ domain Network
749741
# value.
750742
# This is the "Schemeful Same-Site" version of the blocked reason.
751743
SchemefulSameSiteUnspecifiedTreatedAsLax
752-
# The cookie had the "SameParty" attribute and the request was made from a cross-party context.
753-
SamePartyFromCrossPartyContext
754744
# The cookie's name/value pair size exceeded the size limit defined in
755745
# RFC6265bis.
756746
NameValuePairExceedsMaxSize
@@ -847,8 +837,6 @@ domain Network
847837
optional TimeSinceEpoch expires
848838
# Cookie Priority.
849839
experimental optional CookiePriority priority
850-
# True if cookie is SameParty.
851-
experimental optional boolean sameParty
852840
# Cookie source scheme type.
853841
experimental optional CookieSourceScheme sourceScheme
854842
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.
@@ -1317,8 +1305,6 @@ domain Network
13171305
optional TimeSinceEpoch expires
13181306
# Cookie Priority type.
13191307
experimental optional CookiePriority priority
1320-
# True if cookie is SameParty.
1321-
experimental optional boolean sameParty
13221308
# Cookie source scheme type.
13231309
experimental optional CookieSourceScheme sourceScheme
13241310
# Cookie source port. Valid values are {-1, [1, 65535]}, -1 indicates an unspecified port.

types/protocol.d.ts

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3453,7 +3453,7 @@ export namespace Protocol {
34533453
frameId: Page.FrameId;
34543454
}
34553455

3456-
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout' | 'ExcludePortMismatch' | 'ExcludeSchemeMismatch');
3456+
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout' | 'ExcludePortMismatch' | 'ExcludeSchemeMismatch');
34573457

34583458
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout' | 'WarnCrossSiteRedirectDowngradeChangesInclusion' | 'WarnDeprecationTrialMetadata' | 'WarnThirdPartyCookieHeuristic');
34593459

@@ -12870,12 +12870,6 @@ export namespace Protocol {
1287012870
* @experimental
1287112871
*/
1287212872
priority: CookiePriority;
12873-
/**
12874-
* True if cookie is SameParty.
12875-
* @deprecated
12876-
* @experimental
12877-
*/
12878-
sameParty: boolean;
1287912873
/**
1288012874
* Cookie source scheme type.
1288112875
* @experimental
@@ -12904,13 +12898,13 @@ export namespace Protocol {
1290412898
* Types of reasons why a cookie may not be stored from a response.
1290512899
* @experimental
1290612900
*/
12907-
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'SamePartyConflictsWithOtherAttributes' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter' | 'NoCookieContent');
12901+
export type SetCookieBlockedReason = ('SecureOnly' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'SyntaxError' | 'SchemeNotSupported' | 'OverwriteSecure' | 'InvalidDomain' | 'InvalidPrefix' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'NameValuePairExceedsMaxSize' | 'DisallowedCharacter' | 'NoCookieContent');
1290812902

1290912903
/**
1291012904
* Types of reasons why a cookie may not be sent with a request.
1291112905
* @experimental
1291212906
*/
12913-
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'SamePartyFromCrossPartyContext' | 'NameValuePairExceedsMaxSize' | 'PortMismatch' | 'SchemeMismatch' | 'AnonymousContext');
12907+
export type CookieBlockedReason = ('SecureOnly' | 'NotOnPath' | 'DomainMismatch' | 'SameSiteStrict' | 'SameSiteLax' | 'SameSiteUnspecifiedTreatedAsLax' | 'SameSiteNoneInsecure' | 'UserPreferences' | 'ThirdPartyPhaseout' | 'ThirdPartyBlockedInFirstPartySet' | 'UnknownError' | 'SchemefulSameSiteStrict' | 'SchemefulSameSiteLax' | 'SchemefulSameSiteUnspecifiedTreatedAsLax' | 'NameValuePairExceedsMaxSize' | 'PortMismatch' | 'SchemeMismatch' | 'AnonymousContext');
1291412908

1291512909
/**
1291612910
* Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
@@ -13027,11 +13021,6 @@ export namespace Protocol {
1302713021
* @experimental
1302813022
*/
1302913023
priority?: CookiePriority;
13030-
/**
13031-
* True if cookie is SameParty.
13032-
* @experimental
13033-
*/
13034-
sameParty?: boolean;
1303513024
/**
1303613025
* Cookie source scheme type.
1303713026
* @experimental
@@ -14219,11 +14208,6 @@ export namespace Protocol {
1421914208
* @experimental
1422014209
*/
1422114210
priority?: CookiePriority;
14222-
/**
14223-
* True if cookie is SameParty.
14224-
* @experimental
14225-
*/
14226-
sameParty?: boolean;
1422714211
/**
1422814212
* Cookie source scheme type.
1422914213
* @experimental

0 commit comments

Comments
 (0)