|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1392711 — _2024-12-06T04:30:32.000Z_ |
| 4 | +###### Diff: [`4f13107...c9782bf`](https://github.com/ChromeDevTools/devtools-protocol/compare/4f13107...c9782bf) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ browser_protocol.pdl:2264 @@ experimental domain CSS |
| 8 | + # Computed style for the specified DOM node. |
| 9 | + array of CSSComputedStyleProperty computedStyle |
| 10 | + |
| 11 | ++ # Resolve the specified values in the context of the provided element. |
| 12 | ++ # For example, a value of '1em' is evaluated according to the computed |
| 13 | ++ # 'font-size' of the element and a value 'calc(1px + 2px)' will be |
| 14 | ++ # resolved to '3px'. |
| 15 | ++ command resolveValues |
| 16 | ++ parameters |
| 17 | ++ # Substitution functions (var()/env()/attr()) and cascade-dependent |
| 18 | ++ # keywords (revert/revert-layer) do not work. |
| 19 | ++ array of string values |
| 20 | ++ # Id of the node in whose context the expression is evaluated |
| 21 | ++ DOM.NodeId nodeId |
| 22 | ++ # Only longhands and custom property names are accepted. |
| 23 | ++ optional string propertyName |
| 24 | ++ # Pseudo element type, only works for pseudo elements that generate |
| 25 | ++ # elements in the tree, such as ::before and ::after. |
| 26 | ++ experimental optional DOM.PseudoType pseudoType |
| 27 | ++ # Pseudo element custom ident. |
| 28 | ++ experimental optional string pseudoIdentifier |
| 29 | ++ returns |
| 30 | ++ array of string results |
| 31 | ++ |
| 32 | + # Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM |
| 33 | + # attributes) for a DOM node identified by `nodeId`. |
| 34 | + command getInlineStylesForNode |
| 35 | +@@ -7293,6 +7314,9 @@ domain Network |
| 36 | + # are represented by the invalid cookie line string instead of a proper cookie. |
| 37 | + array of BlockedSetCookieWithReason blockedCookies |
| 38 | + # Raw response headers as they were received over the wire. |
| 39 | ++ # Duplicate headers in the response are represented as a single key with their values |
| 40 | ++ # concatentated using `\n` as the separator. |
| 41 | ++ # See also `headersText` that contains verbatim text for HTTP/1.*. |
| 42 | + Headers headers |
| 43 | + # The IP address space of the resource. The address space can only be determined once the transport |
| 44 | + # established the connection, so we can't send it in `requestWillBeSentExtraInfo`. |
| 45 | +@@ -7321,6 +7345,9 @@ domain Network |
| 46 | + # Request identifier. Used to match this information to another responseReceived event. |
| 47 | + RequestId requestId |
| 48 | + # Raw response headers as they were received over the wire. |
| 49 | ++ # Duplicate headers in the response are represented as a single key with their values |
| 50 | ++ # concatentated using `\n` as the separator. |
| 51 | ++ # See also `headersText` that contains verbatim text for HTTP/1.*. |
| 52 | + Headers headers |
| 53 | + |
| 54 | + # Fired exactly once for each Trust Token operation. Depending on |
| 55 | +``` |
| 56 | + |
3 | 57 | ## Roll protocol to r1392070 — _2024-12-05T04:30:37.000Z_ |
4 | | -###### Diff: [`49fd69e...c3149f3`](https://github.com/ChromeDevTools/devtools-protocol/compare/49fd69e...c3149f3) |
| 58 | +###### Diff: [`49fd69e...4f13107`](https://github.com/ChromeDevTools/devtools-protocol/compare/49fd69e...4f13107) |
5 | 59 |
|
6 | 60 | ```diff |
7 | 61 | @@ browser_protocol.pdl:12424 @@ experimental domain Preload |
@@ -12222,79 +12276,4 @@ index 18cf0c7..8e43695 100644 |
12222 | 12276 | optional Runtime.ExceptionDetails exceptionDetails |
12223 | 12277 |
|
12224 | 12278 | # Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc). |
12225 | | -``` |
12226 | | - |
12227 | | -## Roll protocol to r1011700 — _2022-06-07T22:15:32.000Z_ |
12228 | | -###### Diff: [`1ed415a...44cc592`](https://github.com/ChromeDevTools/devtools-protocol/compare/1ed415a...44cc592) |
12229 | | - |
12230 | | -```diff |
12231 | | -@@ js_protocol.pdl:273 @@ domain Debugger |
12232 | | - parameters |
12233 | | - BreakpointId breakpointId |
12234 | | - |
12235 | | -- # Restarts particular call frame from the beginning. |
12236 | | -- deprecated command restartFrame |
12237 | | -+ # Restarts particular call frame from the beginning. The old, deprecated |
12238 | | -+ # behavior of `restartFrame` is to stay paused and allow further CDP commands |
12239 | | -+ # after a restart was scheduled. This can cause problems with restarting, so |
12240 | | -+ # we now continue execution immediatly after it has been scheduled until we |
12241 | | -+ # reach the beginning of the restarted frame. |
12242 | | -+ # |
12243 | | -+ # To stay back-wards compatible, `restartFrame` now expects a `mode` |
12244 | | -+ # parameter to be present. If the `mode` parameter is missing, `restartFrame` |
12245 | | -+ # errors out. |
12246 | | -+ # |
12247 | | -+ # The various return values are deprecated and `callFrames` is always empty. |
12248 | | -+ # Use the call frames from the `Debugger#paused` events instead, that fires |
12249 | | -+ # once V8 pauses at the beginning of the restarted function. |
12250 | | -+ command restartFrame |
12251 | | - parameters |
12252 | | - # Call frame identifier to evaluate on. |
12253 | | - CallFrameId callFrameId |
12254 | | -+ # The `mode` parameter must be present and set to 'StepInto', otherwise |
12255 | | -+ # `restartFrame` will error out. |
12256 | | -+ experimental optional enum mode |
12257 | | -+ # Pause at the beginning of the restarted function |
12258 | | -+ StepInto |
12259 | | - returns |
12260 | | - # New stack trace. |
12261 | | -- array of CallFrame callFrames |
12262 | | -+ deprecated array of CallFrame callFrames |
12263 | | - # Async stack trace, if any. |
12264 | | -- optional Runtime.StackTrace asyncStackTrace |
12265 | | -+ deprecated optional Runtime.StackTrace asyncStackTrace |
12266 | | - # Async stack trace, if any. |
12267 | | -- experimental optional Runtime.StackTraceId asyncStackTraceId |
12268 | | -+ deprecated optional Runtime.StackTraceId asyncStackTraceId |
12269 | | - |
12270 | | - # Resumes JavaScript execution. |
12271 | | - command resume |
12272 | | -@@ -713,18 +730,24 @@ experimental domain HeapProfiler |
12273 | | - # If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken |
12274 | | - # when the tracking is stopped. |
12275 | | - optional boolean reportProgress |
12276 | | -- optional boolean treatGlobalObjectsAsRoots |
12277 | | -+ # Deprecated in favor of `exposeInternals`. |
12278 | | -+ deprecated optional boolean treatGlobalObjectsAsRoots |
12279 | | - # If true, numerical values are included in the snapshot |
12280 | | - optional boolean captureNumericValue |
12281 | | -+ # If true, exposes internals of the snapshot. |
12282 | | -+ experimental optional boolean exposeInternals |
12283 | | - |
12284 | | - command takeHeapSnapshot |
12285 | | - parameters |
12286 | | - # If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken. |
12287 | | - optional boolean reportProgress |
12288 | | -- # If true, a raw snapshot without artificial roots will be generated |
12289 | | -- optional boolean treatGlobalObjectsAsRoots |
12290 | | -+ # If true, a raw snapshot without artificial roots will be generated. |
12291 | | -+ # Deprecated in favor of `exposeInternals`. |
12292 | | -+ deprecated optional boolean treatGlobalObjectsAsRoots |
12293 | | - # If true, numerical values are included in the snapshot |
12294 | | - optional boolean captureNumericValue |
12295 | | -+ # If true, exposes internals of the snapshot. |
12296 | | -+ experimental optional boolean exposeInternals |
12297 | | - |
12298 | | - event addHeapSnapshotChunk |
12299 | | - parameters |
12300 | 12279 | ``` |
0 commit comments