Skip to content

Commit 6e7b094

Browse files
committed
Roll protocol to r1625959
1 parent 8feb4e1 commit 6e7b094

7 files changed

Lines changed: 62 additions & 26 deletions

File tree

changelog.md

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

22

3+
## Roll protocol to r1625959 — _2026-05-06T05:34:33.000Z_
4+
###### Diff: [`8feb4e1...1f60c69`](https://github.com/ChromeDevTools/devtools-protocol/compare/8feb4e1...1f60c69)
5+
6+
```diff
7+
@@ domains/CSS.pdl:523 @@ experimental domain CSS
8+
font-face
9+
font-feature-values
10+
font-palette-values
11+
+ counter-style
12+
# Subsection of font-feature-values, if this is a subsection.
13+
optional enum subsection
14+
# LINT.IfChange(FontVariantAlternatesFeatureType)
15+
diff --git a/pdl/domains/Network.pdl b/pdl/domains/Network.pdl
16+
index a32732d7..88ee5bcd 100644
17+
--- a/pdl/domains/Network.pdl
18+
+++ b/pdl/domains/Network.pdl
19+
@@ -2162,6 +2162,7 @@ domain Network
20+
Success
21+
KeyError
22+
SigningError
23+
+ TransientSigningError
24+
ServerRequestedTermination
25+
InvalidSessionId
26+
InvalidChallenge
27+
@@ -2260,13 +2261,14 @@ domain Network
28+
# The result of a refresh.
29+
enum refreshResult
30+
Refreshed
31+
- RefreshedAsWaiter
32+
InitializedService
33+
Unreachable
34+
ServerError
35+
RefreshQuotaExceeded
36+
FatalError
37+
SigningQuotaExceeded
38+
+ RefreshedAsWaiter
39+
+ TransientSigningError
40+
# If there was a fetch attempt, the result of that.
41+
optional DeviceBoundSessionFetchResult fetchResult
42+
# The session display if there was a newly created session. This is populated
43+
```
44+
345
## Roll protocol to r1624250 — _2026-05-02T05:22:23.000Z_
4-
###### Diff: [`470fb6a...0e0ce12`](https://github.com/ChromeDevTools/devtools-protocol/compare/470fb6a...0e0ce12)
46+
###### Diff: [`470fb6a...8feb4e1`](https://github.com/ChromeDevTools/devtools-protocol/compare/470fb6a...8feb4e1)
547

648
```diff
749
@@ domains/Page.pdl:168 @@ domain Page
@@ -42882,18 +42924,4 @@ index 4754f17c..8dad9c98 100644
4288242924
# Emulates touch event from the mouse event parameters.
4288342925
experimental command emulateTouchFromMouseEvent
4288442926
parameters
42885-
```
42886-
42887-
## Roll protocol to r1167732 — _2023-07-08T04:27:37.000Z_
42888-
###### Diff: [`f3b3b51...8b56da5`](https://github.com/ChromeDevTools/devtools-protocol/compare/f3b3b51...8b56da5)
42889-
42890-
```diff
42891-
@@ browser_protocol.pdl:9711 @@ experimental domain Storage
42892-
destinationReportingLimitReached
42893-
destinationGlobalLimitReached
42894-
destinationBothLimitsReached
42895-
+ reportingOriginsPerSiteLimitReached
42896-
42897-
# TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
42898-
# trigger registration.
4289942927
```

json/browser_protocol.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5327,7 +5327,8 @@
53275327
"enum": [
53285328
"font-face",
53295329
"font-feature-values",
5330-
"font-palette-values"
5330+
"font-palette-values",
5331+
"counter-style"
53315332
]
53325333
},
53335334
{
@@ -17786,6 +17787,7 @@
1778617787
"Success",
1778717788
"KeyError",
1778817789
"SigningError",
17790+
"TransientSigningError",
1778917791
"ServerRequestedTermination",
1779017792
"InvalidSessionId",
1779117793
"InvalidChallenge",
@@ -17921,13 +17923,14 @@
1792117923
"type": "string",
1792217924
"enum": [
1792317925
"Refreshed",
17924-
"RefreshedAsWaiter",
1792517926
"InitializedService",
1792617927
"Unreachable",
1792717928
"ServerError",
1792817929
"RefreshQuotaExceeded",
1792917930
"FatalError",
17930-
"SigningQuotaExceeded"
17931+
"SigningQuotaExceeded",
17932+
"RefreshedAsWaiter",
17933+
"TransientSigningError"
1793117934
]
1793217935
},
1793317936
{

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

pdl/domains/CSS.pdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@ experimental domain CSS
523523
font-face
524524
font-feature-values
525525
font-palette-values
526+
counter-style
526527
# Subsection of font-feature-values, if this is a subsection.
527528
optional enum subsection
528529
# LINT.IfChange(FontVariantAlternatesFeatureType)

pdl/domains/Network.pdl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2162,6 +2162,7 @@ domain Network
21622162
Success
21632163
KeyError
21642164
SigningError
2165+
TransientSigningError
21652166
ServerRequestedTermination
21662167
InvalidSessionId
21672168
InvalidChallenge
@@ -2260,13 +2261,14 @@ domain Network
22602261
# The result of a refresh.
22612262
enum refreshResult
22622263
Refreshed
2263-
RefreshedAsWaiter
22642264
InitializedService
22652265
Unreachable
22662266
ServerError
22672267
RefreshQuotaExceeded
22682268
FatalError
22692269
SigningQuotaExceeded
2270+
RefreshedAsWaiter
2271+
TransientSigningError
22702272
# If there was a fetch attempt, the result of that.
22712273
optional DeviceBoundSessionFetchResult fetchResult
22722274
# The session display if there was a newly created session. This is populated

types/protocol.d.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5869,6 +5869,7 @@ export namespace Protocol {
58695869
FontFace = 'font-face',
58705870
FontFeatureValues = 'font-feature-values',
58715871
FontPaletteValues = 'font-palette-values',
5872+
CounterStyle = 'counter-style',
58725873
}
58735874

58745875
export const enum CSSAtRuleSubsection {
@@ -5887,7 +5888,7 @@ export namespace Protocol {
58875888
/**
58885889
* Type of at-rule.
58895890
*/
5890-
type: ('font-face' | 'font-feature-values' | 'font-palette-values');
5891+
type: ('font-face' | 'font-feature-values' | 'font-palette-values' | 'counter-style');
58915892
/**
58925893
* Subsection of font-feature-values, if this is a subsection.
58935894
*/
@@ -14006,7 +14007,7 @@ export namespace Protocol {
1400614007
* A fetch result for a device bound session creation or refresh.
1400714008
* @experimental
1400814009
*/
14009-
export type DeviceBoundSessionFetchResult = ('Success' | 'KeyError' | 'SigningError' | 'ServerRequestedTermination' | 'InvalidSessionId' | 'InvalidChallenge' | 'TooManyChallenges' | 'InvalidFetcherUrl' | 'InvalidRefreshUrl' | 'TransientHttpError' | 'ScopeOriginSameSiteMismatch' | 'RefreshUrlSameSiteMismatch' | 'MismatchedSessionId' | 'MissingScope' | 'NoCredentials' | 'SubdomainRegistrationWellKnownUnavailable' | 'SubdomainRegistrationUnauthorized' | 'SubdomainRegistrationWellKnownMalformed' | 'SessionProviderWellKnownUnavailable' | 'RelyingPartyWellKnownUnavailable' | 'FederatedKeyThumbprintMismatch' | 'InvalidFederatedSessionUrl' | 'InvalidFederatedKey' | 'TooManyRelyingOriginLabels' | 'BoundCookieSetForbidden' | 'NetError' | 'ProxyError' | 'EmptySessionConfig' | 'InvalidCredentialsConfig' | 'InvalidCredentialsType' | 'InvalidCredentialsEmptyName' | 'InvalidCredentialsCookie' | 'PersistentHttpError' | 'RegistrationAttemptedChallenge' | 'InvalidScopeOrigin' | 'ScopeOriginContainsPath' | 'RefreshInitiatorNotString' | 'RefreshInitiatorInvalidHostPattern' | 'InvalidScopeSpecification' | 'MissingScopeSpecificationType' | 'EmptyScopeSpecificationDomain' | 'EmptyScopeSpecificationPath' | 'InvalidScopeSpecificationType' | 'InvalidScopeIncludeSite' | 'MissingScopeIncludeSite' | 'FederatedNotAuthorizedByProvider' | 'FederatedNotAuthorizedByRelyingParty' | 'SessionProviderWellKnownMalformed' | 'SessionProviderWellKnownHasProviderOrigin' | 'RelyingPartyWellKnownMalformed' | 'RelyingPartyWellKnownHasRelyingOrigins' | 'InvalidFederatedSessionProviderSessionMissing' | 'InvalidFederatedSessionWrongProviderOrigin' | 'InvalidCredentialsCookieCreationTime' | 'InvalidCredentialsCookieName' | 'InvalidCredentialsCookieParsing' | 'InvalidCredentialsCookieUnpermittedAttribute' | 'InvalidCredentialsCookieInvalidDomain' | 'InvalidCredentialsCookiePrefix' | 'InvalidScopeRulePath' | 'InvalidScopeRuleHostPattern' | 'ScopeRuleOriginScopedHostPatternMismatch' | 'ScopeRuleSiteScopedHostPatternMismatch' | 'SigningQuotaExceeded' | 'InvalidConfigJson' | 'InvalidFederatedSessionProviderFailedToRestoreKey' | 'FailedToUnwrapKey' | 'SessionDeletedDuringRefresh');
14010+
export type DeviceBoundSessionFetchResult = ('Success' | 'KeyError' | 'SigningError' | 'TransientSigningError' | 'ServerRequestedTermination' | 'InvalidSessionId' | 'InvalidChallenge' | 'TooManyChallenges' | 'InvalidFetcherUrl' | 'InvalidRefreshUrl' | 'TransientHttpError' | 'ScopeOriginSameSiteMismatch' | 'RefreshUrlSameSiteMismatch' | 'MismatchedSessionId' | 'MissingScope' | 'NoCredentials' | 'SubdomainRegistrationWellKnownUnavailable' | 'SubdomainRegistrationUnauthorized' | 'SubdomainRegistrationWellKnownMalformed' | 'SessionProviderWellKnownUnavailable' | 'RelyingPartyWellKnownUnavailable' | 'FederatedKeyThumbprintMismatch' | 'InvalidFederatedSessionUrl' | 'InvalidFederatedKey' | 'TooManyRelyingOriginLabels' | 'BoundCookieSetForbidden' | 'NetError' | 'ProxyError' | 'EmptySessionConfig' | 'InvalidCredentialsConfig' | 'InvalidCredentialsType' | 'InvalidCredentialsEmptyName' | 'InvalidCredentialsCookie' | 'PersistentHttpError' | 'RegistrationAttemptedChallenge' | 'InvalidScopeOrigin' | 'ScopeOriginContainsPath' | 'RefreshInitiatorNotString' | 'RefreshInitiatorInvalidHostPattern' | 'InvalidScopeSpecification' | 'MissingScopeSpecificationType' | 'EmptyScopeSpecificationDomain' | 'EmptyScopeSpecificationPath' | 'InvalidScopeSpecificationType' | 'InvalidScopeIncludeSite' | 'MissingScopeIncludeSite' | 'FederatedNotAuthorizedByProvider' | 'FederatedNotAuthorizedByRelyingParty' | 'SessionProviderWellKnownMalformed' | 'SessionProviderWellKnownHasProviderOrigin' | 'RelyingPartyWellKnownMalformed' | 'RelyingPartyWellKnownHasRelyingOrigins' | 'InvalidFederatedSessionProviderSessionMissing' | 'InvalidFederatedSessionWrongProviderOrigin' | 'InvalidCredentialsCookieCreationTime' | 'InvalidCredentialsCookieName' | 'InvalidCredentialsCookieParsing' | 'InvalidCredentialsCookieUnpermittedAttribute' | 'InvalidCredentialsCookieInvalidDomain' | 'InvalidCredentialsCookiePrefix' | 'InvalidScopeRulePath' | 'InvalidScopeRuleHostPattern' | 'ScopeRuleOriginScopedHostPatternMismatch' | 'ScopeRuleSiteScopedHostPatternMismatch' | 'SigningQuotaExceeded' | 'InvalidConfigJson' | 'InvalidFederatedSessionProviderFailedToRestoreKey' | 'FailedToUnwrapKey' | 'SessionDeletedDuringRefresh');
1401014011

1401114012
/**
1401214013
* Details about a failed device bound session network request.
@@ -14056,13 +14057,14 @@ export namespace Protocol {
1405614057

1405714058
export const enum RefreshEventDetailsRefreshResult {
1405814059
Refreshed = 'Refreshed',
14059-
RefreshedAsWaiter = 'RefreshedAsWaiter',
1406014060
InitializedService = 'InitializedService',
1406114061
Unreachable = 'Unreachable',
1406214062
ServerError = 'ServerError',
1406314063
RefreshQuotaExceeded = 'RefreshQuotaExceeded',
1406414064
FatalError = 'FatalError',
1406514065
SigningQuotaExceeded = 'SigningQuotaExceeded',
14066+
RefreshedAsWaiter = 'RefreshedAsWaiter',
14067+
TransientSigningError = 'TransientSigningError',
1406614068
}
1406714069

1406814070
/**
@@ -14073,7 +14075,7 @@ export namespace Protocol {
1407314075
/**
1407414076
* The result of a refresh.
1407514077
*/
14076-
refreshResult: ('Refreshed' | 'RefreshedAsWaiter' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'RefreshQuotaExceeded' | 'FatalError' | 'SigningQuotaExceeded');
14078+
refreshResult: ('Refreshed' | 'InitializedService' | 'Unreachable' | 'ServerError' | 'RefreshQuotaExceeded' | 'FatalError' | 'SigningQuotaExceeded' | 'RefreshedAsWaiter' | 'TransientSigningError');
1407714079
/**
1407814080
* If there was a fetch attempt, the result of that.
1407914081
*/

0 commit comments

Comments
 (0)