|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1651496 — _2026-06-24T05:48:07.000Z_ |
| 4 | +###### Diff: [`42c3c57...d687700`](https://github.com/ChromeDevTools/devtools-protocol/compare/42c3c57...d687700) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Audits.pdl:604 @@ experimental domain Audits |
| 8 | + JwksHttpNotFound |
| 9 | + JwksInvalidResponse |
| 10 | + TokenVerificationSdJwtUnsupportedHeaderAlg |
| 11 | ++ TokenVerificationSdJwtInvalidTyp |
| 12 | + TokenVerificationSdJwtMissingIss |
| 13 | + TokenVerificationSdJwtMissingIat |
| 14 | + TokenVerificationSdJwtMissingCnf |
| 15 | +diff --git a/pdl/domains/Overlay.pdl b/pdl/domains/Overlay.pdl |
| 16 | +index 8ef51bbb..33144933 100644 |
| 17 | +--- a/pdl/domains/Overlay.pdl |
| 18 | ++++ b/pdl/domains/Overlay.pdl |
| 19 | +@@ -208,6 +208,36 @@ experimental domain Overlay |
| 20 | + # The content box highlight outline color (default: transparent). |
| 21 | + optional DOM.RGBA outlineColor |
| 22 | + |
| 23 | ++ # Supported display cutout shapes. |
| 24 | ++ type DisplayCutoutShape extends string |
| 25 | ++ enum |
| 26 | ++ pill |
| 27 | ++ notch |
| 28 | ++ circle |
| 29 | ++ rectangle |
| 30 | ++ |
| 31 | ++ # Configuration for a display cutout. |
| 32 | ++ type DisplayCutoutConfig extends object |
| 33 | ++ properties |
| 34 | ++ # A rectangle representing the cutout bounds. |
| 35 | ++ DOM.Rect rect |
| 36 | ++ # Shape used to draw the cutout. |
| 37 | ++ DisplayCutoutShape shape |
| 38 | ++ # Border radius for rounded cutout shapes. |
| 39 | ++ optional integer borderRadius |
| 40 | ++ # Upper shoulder radius for notch cutout shapes. |
| 41 | ++ optional integer upperRadius |
| 42 | ++ # Lower transition radius for notch cutout shapes. |
| 43 | ++ optional integer lowerRadius |
| 44 | ++ # Center x coordinate for circle cutout shapes. |
| 45 | ++ optional integer cx |
| 46 | ++ # Center y coordinate for circle cutout shapes. |
| 47 | ++ optional integer cy |
| 48 | ++ # Radius for circle cutout shapes. |
| 49 | ++ optional integer radius |
| 50 | ++ # The cutout fill color (default: black). |
| 51 | ++ optional DOM.RGBA contentColor |
| 52 | ++ |
| 53 | + # Configuration for Window Controls Overlay |
| 54 | + type WindowControlsOverlayConfig extends object |
| 55 | + properties |
| 56 | +@@ -476,6 +506,12 @@ experimental domain Overlay |
| 57 | + # hinge data, null means hideHinge |
| 58 | + optional HingeConfig hingeConfig |
| 59 | + |
| 60 | ++ # Add a display cutout overlay. |
| 61 | ++ command setShowDisplayCutout |
| 62 | ++ parameters |
| 63 | ++ # display cutout data, null means hide display cutout |
| 64 | ++ optional DisplayCutoutConfig displayCutoutConfig |
| 65 | ++ |
| 66 | + # Show elements in isolation mode with overlays. |
| 67 | + command setShowIsolatedElements |
| 68 | + parameters |
| 69 | +``` |
| 70 | + |
3 | 71 | ## Roll protocol to r1648812 — _2026-06-18T06:03:26.000Z_ |
4 | | -###### Diff: [`fc77610...99c77c9`](https://github.com/ChromeDevTools/devtools-protocol/compare/fc77610...99c77c9) |
| 72 | +###### Diff: [`fc77610...42c3c57`](https://github.com/ChromeDevTools/devtools-protocol/compare/fc77610...42c3c57) |
5 | 73 |
|
6 | 74 | ```diff |
7 | 75 | @@ domains/Network.pdl:738 @@ domain Network |
@@ -42849,45 +42917,4 @@ index 4754f17c..8dad9c98 100644 |
42849 | 42917 | # The cookie was blocked by third-party cookie blocking between sites in |
42850 | 42918 | # the same First-Party Set. |
42851 | 42919 | ThirdPartyBlockedInFirstPartySet |
42852 | | -``` |
42853 | | - |
42854 | | -## Roll protocol to r1196408 — _2023-09-14T04:25:59.000Z_ |
42855 | | -###### Diff: [`2fffccb...042ec44`](https://github.com/ChromeDevTools/devtools-protocol/compare/2fffccb...042ec44) |
42856 | | - |
42857 | | -```diff |
42858 | | -@@ browser_protocol.pdl:2095 @@ experimental domain CSS |
42859 | | - string propertyName |
42860 | | - string value |
42861 | | - |
42862 | | -+ # Modifies the property rule property name. |
42863 | | -+ command setPropertyRulePropertyName |
42864 | | -+ parameters |
42865 | | -+ StyleSheetId styleSheetId |
42866 | | -+ SourceRange range |
42867 | | -+ string propertyName |
42868 | | -+ returns |
42869 | | -+ # The resulting key text after modification. |
42870 | | -+ Value propertyName |
42871 | | -+ |
42872 | | - # Modifies the keyframe rule key text. |
42873 | | - command setKeyframeKey |
42874 | | - parameters |
42875 | | -@@ -11296,7 +11306,6 @@ experimental domain Preload |
42876 | | - NavigationBadHttpStatus |
42877 | | - ClientCertRequested |
42878 | | - NavigationRequestNetworkError |
42879 | | -- MaxNumOfRunningPrerendersExceeded |
42880 | | - CancelAllHostsForTesting |
42881 | | - DidFailLoad |
42882 | | - Stop |
42883 | | -@@ -11341,6 +11350,9 @@ experimental domain Preload |
42884 | | - ResourceLoadBlockedByClient |
42885 | | - SpeculationRuleRemoved |
42886 | | - ActivatedWithAuxiliaryBrowsingContexts |
42887 | | -+ MaxNumOfRunningEagerPrerendersExceeded |
42888 | | -+ MaxNumOfRunningNonEagerPrerendersExceeded |
42889 | | -+ MaxNumOfRunningEmbedderPrerendersExceeded |
42890 | | - |
42891 | | - # Fired when a prerender attempt is completed. |
42892 | | - event prerenderAttemptCompleted |
42893 | 42920 | ``` |
0 commit comments