|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1560991 — _2025-12-19T04:33:52.000Z_ |
| 4 | +###### Diff: [`ead0e84...48f305d`](https://github.com/ChromeDevTools/devtools-protocol/compare/ead0e84...48f305d) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Network.pdl:166 @@ domain Network |
| 8 | + High |
| 9 | + VeryHigh |
| 10 | + |
| 11 | ++ # The render blocking behavior of a resource request. |
| 12 | ++ experimental type RenderBlockingBehavior extends string |
| 13 | ++ enum |
| 14 | ++ Blocking |
| 15 | ++ InBodyParserBlocking |
| 16 | ++ NonBlocking |
| 17 | ++ NonBlockingDynamic |
| 18 | ++ PotentiallyBlocking |
| 19 | ++ |
| 20 | + # Post data entry for HTTP request |
| 21 | + type PostDataEntry extends object |
| 22 | + properties |
| 23 | +@@ -1498,6 +1507,8 @@ domain Network |
| 24 | + optional Page.FrameId frameId |
| 25 | + # Whether the request is initiated by a user gesture. Defaults to false. |
| 26 | + optional boolean hasUserGesture |
| 27 | ++ # The render blocking behavior of the request. |
| 28 | ++ experimental optional RenderBlockingBehavior renderBlockingBehavior |
| 29 | + |
| 30 | + # Fired when resource loading priority is changed |
| 31 | + experimental event resourceChangedPriority |
| 32 | +diff --git a/pdl/domains/Page.pdl b/pdl/domains/Page.pdl |
| 33 | +index bd96c7cc..987851bc 100644 |
| 34 | +--- a/pdl/domains/Page.pdl |
| 35 | ++++ b/pdl/domains/Page.pdl |
| 36 | +@@ -164,7 +164,9 @@ domain Page |
| 37 | + language-detector |
| 38 | + language-model |
| 39 | + local-fonts |
| 40 | ++ local-network |
| 41 | + local-network-access |
| 42 | ++ loopback-network |
| 43 | + magnetometer |
| 44 | + manual-text |
| 45 | + media-playback-while-not-visible |
| 46 | +diff --git a/pdl/domains/Tracing.pdl b/pdl/domains/Tracing.pdl |
| 47 | +index 44fc3f39..5103577e 100644 |
| 48 | +--- a/pdl/domains/Tracing.pdl |
| 49 | ++++ b/pdl/domains/Tracing.pdl |
| 50 | +@@ -78,6 +78,12 @@ domain Tracing |
| 51 | + # A list of supported tracing categories. |
| 52 | + array of string categories |
| 53 | + |
| 54 | ++ # Return a descriptor for all available tracing categories. |
| 55 | ++ experimental command getTrackEventDescriptor |
| 56 | ++ returns |
| 57 | ++ # Base64-encoded serialized perfetto.protos.TrackEventDescriptor protobuf message. |
| 58 | ++ binary descriptor |
| 59 | ++ |
| 60 | + # Record a clock sync marker in the trace. |
| 61 | + experimental command recordClockSyncMarker |
| 62 | + parameters |
| 63 | +``` |
| 64 | + |
3 | 65 | ## Roll protocol to r1559729 — _2025-12-17T04:33:54.000Z_ |
4 | | -###### Diff: [`d90a8a2...d8e4778`](https://github.com/ChromeDevTools/devtools-protocol/compare/d90a8a2...d8e4778) |
| 66 | +###### Diff: [`d90a8a2...ead0e84`](https://github.com/ChromeDevTools/devtools-protocol/compare/d90a8a2...ead0e84) |
5 | 67 |
|
6 | 68 | ```diff |
7 | 69 | @@ domains/Network.pdl:1145 @@ domain Network |
@@ -42074,50 +42136,4 @@ index 0dbdc01d..7a3c772c 100644 |
42074 | 42136 | array of PreloadingAttemptSource preloadingAttemptSources |
42075 | 42137 |
|
42076 | 42138 | # This domain allows interacting with the FedCM dialog. |
42077 | | -``` |
42078 | | - |
42079 | | -## Roll protocol to r1119769 — _2023-03-21T04:27:17.000Z_ |
42080 | | -###### Diff: [`40d0eff...d451302`](https://github.com/ChromeDevTools/devtools-protocol/compare/40d0eff...d451302) |
42081 | | - |
42082 | | -```diff |
42083 | | -@@ browser_protocol.pdl:10842 @@ experimental domain Preload |
42084 | | - InactivePageRestriction |
42085 | | - StartFailed |
42086 | | - TimeoutBackgrounded |
42087 | | -- CrossSiteRedirect |
42088 | | -- CrossSiteNavigation |
42089 | | -- SameSiteCrossOriginRedirect |
42090 | | -- SameSiteCrossOriginRedirectNotOptIn |
42091 | | -- SameSiteCrossOriginNavigationNotOptIn |
42092 | | -+ CrossSiteRedirectInInitialNavigation |
42093 | | -+ CrossSiteNavigationInInitialNavigation |
42094 | | -+ SameSiteCrossOriginRedirectNotOptInInInitialNavigation |
42095 | | -+ SameSiteCrossOriginNavigationNotOptInInInitialNavigation |
42096 | | - ActivationNavigationParameterMismatch |
42097 | | - ActivatedInBackground |
42098 | | - EmbedderHostDisallowed |
42099 | | -@@ -10860,6 +10859,10 @@ experimental domain Preload |
42100 | | - BatterySaverEnabled |
42101 | | - ActivatedDuringMainFrameNavigation |
42102 | | - PreloadingUnsupportedByWebContents |
42103 | | -+ CrossSiteRedirectInMainFrameNavigation |
42104 | | -+ CrossSiteNavigationInMainFrameNavigation |
42105 | | -+ SameSiteCrossOriginRedirectNotOptInInMainFrameNavigation |
42106 | | -+ SameSiteCrossOriginNavigationNotOptInInMainFrameNavigation |
42107 | | - |
42108 | | - # Fired when a prerender attempt is completed. |
42109 | | - event prerenderAttemptCompleted |
42110 | | -@@ -10935,6 +10938,12 @@ experimental domain FedCm |
42111 | | - array of Account accounts |
42112 | | - |
42113 | | - command enable |
42114 | | -+ parameters |
42115 | | -+ # Allows callers to disable the promise rejection delay that would |
42116 | | -+ # normally happen, if this is unimportant to what's being tested. |
42117 | | -+ # (step 4 of https://fedidcg.github.io/FedCM/#browser-api-rp-sign-in) |
42118 | | -+ optional boolean disableRejectionDelay |
42119 | | -+ |
42120 | | - command disable |
42121 | | - |
42122 | | - command selectAccount |
42123 | 42139 | ``` |
0 commit comments