|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1677763 — _2026-08-12T05:00:19.000Z_ |
| 4 | +###### Diff: [`75d6311...109a55a`](https://github.com/ChromeDevTools/devtools-protocol/compare/75d6311...109a55a) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Audits.pdl:341 @@ experimental domain Audits |
| 8 | + InvalidAllowlistItemType |
| 9 | + ReportingEndpointNotToken |
| 10 | + InvalidUrlPattern |
| 11 | ++ IFrameAttributeLoosensEmbeddingRequirement |
| 12 | ++ InvalidAllowConnectionAllowlistFrom |
| 13 | ++ EmbeddingRequirementNotSatisfied |
| 14 | + |
| 15 | + # Details for issues about documents in Quirks Mode |
| 16 | + # or Limited Quirks Mode that affects page layouting. |
| 17 | +diff --git a/pdl/domains/Emulation.pdl b/pdl/domains/Emulation.pdl |
| 18 | +index dfbf0558..bee4a46c 100644 |
| 19 | +--- a/pdl/domains/Emulation.pdl |
| 20 | ++++ b/pdl/domains/Emulation.pdl |
| 21 | +@@ -258,6 +258,16 @@ domain Emulation |
| 22 | + parameters |
| 23 | + SafeAreaInsets insets |
| 24 | + |
| 25 | ++ # Overrides virtual keyboard geometry in CSS pixels, relative to the top-level viewport. The |
| 26 | ++ # provided rect is used for navigator.virtualKeyboard.boundingRect, geometrychange events, and |
| 27 | ++ # env(keyboard-inset-*) values on the inspected frame. The override applies independently of |
| 28 | ++ # navigator.virtualKeyboard.overlaysContent so clients can preview overlay geometry without |
| 29 | ++ # mutating page state. Values are rounded to the nearest CSS pixel. Omitting the rect clears the |
| 30 | ++ # override. |
| 31 | ++ experimental command setVirtualKeyboardGeometryOverride |
| 32 | ++ parameters |
| 33 | ++ optional DOM.Rect keyboardRect |
| 34 | ++ |
| 35 | + # Overrides the values of device screen dimensions (window.screen.width, window.screen.height, |
| 36 | + # window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media |
| 37 | + # query results). |
| 38 | +diff --git a/pdl/domains/Network.pdl b/pdl/domains/Network.pdl |
| 39 | +index d3609630..1a4c07ad 100644 |
| 40 | +--- a/pdl/domains/Network.pdl |
| 41 | ++++ b/pdl/domains/Network.pdl |
| 42 | +@@ -919,22 +919,6 @@ domain Network |
| 43 | + # Errors occurred while handling the signed exchange. |
| 44 | + optional array of SignedExchangeError errors |
| 45 | + |
| 46 | +- # List of content encodings supported by the backend. |
| 47 | +- experimental type ContentEncoding extends string |
| 48 | +- enum |
| 49 | +- deflate |
| 50 | +- gzip |
| 51 | +- br |
| 52 | +- zstd |
| 53 | +- |
| 54 | +- # Sets a list of content encodings that will be accepted. Empty list means no encoding is accepted. |
| 55 | +- experimental command setAcceptedEncodings |
| 56 | +- parameters |
| 57 | +- # List of accepted content encodings. |
| 58 | +- array of ContentEncoding encodings |
| 59 | +- |
| 60 | +- # Clears accepted encodings set by setAcceptedEncodings |
| 61 | +- experimental command clearAcceptedEncodingsOverride |
| 62 | + |
| 63 | + # Tells whether clearing browser cache is supported. |
| 64 | + deprecated command canClearBrowserCache |
| 65 | +diff --git a/pdl/domains/Page.pdl b/pdl/domains/Page.pdl |
| 66 | +index dcf1ddfb..df727762 100644 |
| 67 | +--- a/pdl/domains/Page.pdl |
| 68 | ++++ b/pdl/domains/Page.pdl |
| 69 | +@@ -1647,6 +1647,7 @@ domain Page |
| 70 | + EmbedderExtensionMessagingForOpenPort |
| 71 | + EmbedderExtensionSentMessageToCachedFrame |
| 72 | + EmbedderExtensionFrame |
| 73 | ++ EmbedderPrivilegedWebContents |
| 74 | + RequestedByWebViewClient |
| 75 | + PostMessageByWebViewClient |
| 76 | + CacheControlNoStoreDeviceBoundSessionTerminated |
| 77 | +diff --git a/pdl/js_protocol.pdl b/pdl/js_protocol.pdl |
| 78 | +index 7978923d..498ba7d6 100644 |
| 79 | +--- a/pdl/js_protocol.pdl |
| 80 | ++++ b/pdl/js_protocol.pdl |
| 81 | +@@ -487,14 +487,8 @@ domain Debugger |
| 82 | + # New return value. |
| 83 | + Runtime.CallArgument newValue |
| 84 | + |
| 85 | +- # Edits JavaScript source live. |
| 86 | +- # |
| 87 | +- # In general, functions that are currently on the stack can not be edited with |
| 88 | +- # a single exception: If the edited function is the top-most stack frame and |
| 89 | +- # that is the only activation of that function on the stack. In this case |
| 90 | +- # the live edit will be successful and a `Debugger.restartFrame` for the |
| 91 | +- # top-most function is automatically triggered. |
| 92 | +- command setScriptSource |
| 93 | ++ # Live edit is no longer supported and this command always fails with a "no longer available" error. |
| 94 | ++ deprecated command setScriptSource |
| 95 | + parameters |
| 96 | + # Id of the script to edit. |
| 97 | + Runtime.ScriptId scriptId |
| 98 | +``` |
| 99 | + |
3 | 100 | ## Roll protocol to r1676914 — _2026-08-11T04:53:33.000Z_ |
4 | | -###### Diff: [`495a557...30b5360`](https://github.com/ChromeDevTools/devtools-protocol/compare/495a557...30b5360) |
| 101 | +###### Diff: [`495a557...75d6311`](https://github.com/ChromeDevTools/devtools-protocol/compare/495a557...75d6311) |
5 | 102 |
|
6 | 103 | ```diff |
7 | 104 | @@ domains/Page.pdl:158 @@ domain Page |
@@ -43141,38 +43238,4 @@ index 4754f17c..8dad9c98 100644 |
43141 | 43238 | optional string acceptLanguage |
43142 | 43239 | # The platform navigator.platform should return. |
43143 | 43240 | optional string platform |
43144 | | -``` |
43145 | | - |
43146 | | -## Roll protocol to r1224083 — _2023-11-14T04:26:27.000Z_ |
43147 | | -###### Diff: [`d21da35...b28b672`](https://github.com/ChromeDevTools/devtools-protocol/compare/d21da35...b28b672) |
43148 | | - |
43149 | | -```diff |
43150 | | -@@ browser_protocol.pdl:1926 @@ experimental domain CSS |
43151 | | - string syntax |
43152 | | - |
43153 | | - |
43154 | | -+ # CSS font-palette-values rule representation. |
43155 | | -+ type CSSFontPaletteValuesRule extends object |
43156 | | -+ properties |
43157 | | -+ # The css style sheet identifier (absent for user agent stylesheet and user-specified |
43158 | | -+ # stylesheet rules) this rule came from. |
43159 | | -+ optional StyleSheetId styleSheetId |
43160 | | -+ # Parent stylesheet's origin. |
43161 | | -+ StyleSheetOrigin origin |
43162 | | -+ # Associated font palette name. |
43163 | | -+ Value fontPaletteName |
43164 | | -+ # Associated style declaration. |
43165 | | -+ CSSStyle style |
43166 | | -+ |
43167 | | - # CSS property at-rule representation. |
43168 | | - type CSSPropertyRule extends object |
43169 | | - properties |
43170 | | -@@ -2070,6 +2083,8 @@ experimental domain CSS |
43171 | | - optional array of CSSPropertyRule cssPropertyRules |
43172 | | - # A list of CSS property registrations matching this node. |
43173 | | - optional array of CSSPropertyRegistration cssPropertyRegistrations |
43174 | | -+ # A font-palette-values rule matching this node. |
43175 | | -+ optional CSSFontPaletteValuesRule cssFontPaletteValuesRule |
43176 | | - # Id of the first parent element that does not have display: contents. |
43177 | | - experimental optional DOM.NodeId parentLayoutNodeId |
43178 | 43241 | ``` |
0 commit comments