|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1541592 — _2025-11-07T04:32:19.000Z_ |
| 4 | +###### Diff: [`b8b14fd...20c706c`](https://github.com/ChromeDevTools/devtools-protocol/compare/b8b14fd...20c706c) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/CSS.pdl:514 @@ experimental domain CSS |
| 8 | + # Associated style declaration. |
| 9 | + CSSStyle style |
| 10 | + |
| 11 | ++ # CSS generic @rule representation. |
| 12 | ++ type CSSAtRule extends object |
| 13 | ++ properties |
| 14 | ++ # Type of at-rule. |
| 15 | ++ enum type |
| 16 | ++ font-face |
| 17 | ++ font-feature-values |
| 18 | ++ font-palette-values |
| 19 | ++ # Subsection of font-feature-values, if this is a subsection. |
| 20 | ++ optional enum subsection |
| 21 | ++ # LINT.IfChange(FontVariantAlternatesFeatureType) |
| 22 | ++ swash |
| 23 | ++ annotation |
| 24 | ++ ornaments |
| 25 | ++ stylistic |
| 26 | ++ styleset |
| 27 | ++ character-variant |
| 28 | ++ # LINT.ThenChange(//third_party/blink/renderer/core/inspector/inspector_style_sheet.cc:FontVariantAlternatesFeatureType,//third_party/blink/renderer/core/inspector/inspector_css_agent.cc:FontVariantAlternatesFeatureType) |
| 29 | ++ # Associated name, if applicable. |
| 30 | ++ optional Value name |
| 31 | ++ # The css style sheet identifier (absent for user agent stylesheet and user-specified |
| 32 | ++ # stylesheet rules) this rule came from. |
| 33 | ++ optional StyleSheetId styleSheetId |
| 34 | ++ # Parent stylesheet's origin. |
| 35 | ++ StyleSheetOrigin origin |
| 36 | ++ # Associated style declaration. |
| 37 | ++ CSSStyle style |
| 38 | ++ |
| 39 | + # CSS property at-rule representation. |
| 40 | + type CSSPropertyRule extends object |
| 41 | + properties |
| 42 | +@@ -774,6 +802,8 @@ experimental domain CSS |
| 43 | + optional array of CSSPropertyRegistration cssPropertyRegistrations |
| 44 | + # A font-palette-values rule matching this node. |
| 45 | + optional CSSFontPaletteValuesRule cssFontPaletteValuesRule |
| 46 | ++ # A list of simple @rules matching this node or its pseudo-elements. |
| 47 | ++ optional array of CSSAtRule cssAtRules |
| 48 | + # Id of the first parent element that does not have display: contents. |
| 49 | + experimental optional DOM.NodeId parentLayoutNodeId |
| 50 | + # A list of CSS at-function rules referenced by styles of this node. |
| 51 | +diff --git a/pdl/domains/Target.pdl b/pdl/domains/Target.pdl |
| 52 | +index 8c7f510d..abe66920 100644 |
| 53 | +--- a/pdl/domains/Target.pdl |
| 54 | ++++ b/pdl/domains/Target.pdl |
| 55 | +@@ -322,6 +322,9 @@ domain Target |
| 56 | + parameters |
| 57 | + # This can be the page or tab target ID. |
| 58 | + TargetID targetId |
| 59 | ++ # The id of the panel we want DevTools to open initially. Currently |
| 60 | ++ # supported panels are elements, console, network, sources and resources. |
| 61 | ++ optional string panelId |
| 62 | + returns |
| 63 | + # The targetId of DevTools page target. |
| 64 | + TargetID targetId |
| 65 | +``` |
| 66 | + |
3 | 67 | ## Roll protocol to r1541017 — _2025-11-06T04:32:31.000Z_ |
4 | | -###### Diff: [`0e79e39...166a35c`](https://github.com/ChromeDevTools/devtools-protocol/compare/0e79e39...166a35c) |
| 68 | +###### Diff: [`0e79e39...b8b14fd`](https://github.com/ChromeDevTools/devtools-protocol/compare/0e79e39...b8b14fd) |
5 | 69 |
|
6 | 70 | ```diff |
7 | 71 | @@ domains/Animation.pdl:68 @@ experimental domain Animation |
@@ -41870,78 +41934,4 @@ index 0dbdc01d..7a3c772c 100644 |
41870 | 41934 | + event ruleSetRemoved |
41871 | 41935 | + parameters |
41872 | 41936 | + RuleSetId id |
41873 | | -``` |
41874 | | - |
41875 | | -## Roll protocol to r1103684 — _2023-02-10T04:28:55.000Z_ |
41876 | | -###### Diff: [`8cf7384...97f8fcb`](https://github.com/ChromeDevTools/devtools-protocol/compare/8cf7384...97f8fcb) |
41877 | | - |
41878 | | -```diff |
41879 | | -@@ browser_protocol.pdl:8555 @@ domain Page |
41880 | | - # that is incompatible with prerender and has caused the cancellation of the attempt |
41881 | | - optional string disallowedApiMethod |
41882 | | - |
41883 | | -+ # List of Prefetch status, which refers to PreloadingTriggeringOutcome. |
41884 | | -+ type PrefetchStatus extends string |
41885 | | -+ enum |
41886 | | -+ Running |
41887 | | -+ Ready |
41888 | | -+ Success |
41889 | | -+ Failure |
41890 | | -+ # PreloadingTriggeringOutcome which not used by prefetch. |
41891 | | -+ NotSupported |
41892 | | -+ |
41893 | | -+ # TODO(crbug/1384419): Create a dedicated domain for preloading. |
41894 | | -+ # Fired when a prefetch attempt is updated. |
41895 | | -+ experimental event prefetchStatusUpdated |
41896 | | -+ parameters |
41897 | | -+ # The frame id of the frame initiating prefetch. |
41898 | | -+ FrameId initiatingFrameId |
41899 | | -+ string prefetchUrl |
41900 | | -+ PrefetchStatus status |
41901 | | -+ |
41902 | | - event loadEventFired |
41903 | | - parameters |
41904 | | - Network.MonotonicTime timestamp |
41905 | | -@@ -10757,3 +10776,41 @@ experimental domain Media |
41906 | | - |
41907 | | - # Disables the Media domain. |
41908 | | - command disable |
41909 | | -+ |
41910 | | -+experimental domain DeviceAccess |
41911 | | -+ # Device request id. |
41912 | | -+ type RequestId extends string |
41913 | | -+ |
41914 | | -+ # A device id. |
41915 | | -+ type DeviceId extends string |
41916 | | -+ |
41917 | | -+ # Device information displayed in a user prompt to select a device. |
41918 | | -+ type PromptDevice extends object |
41919 | | -+ properties |
41920 | | -+ DeviceId id |
41921 | | -+ # Display name as it appears in a device request user prompt. |
41922 | | -+ string name |
41923 | | -+ |
41924 | | -+ # Enable events in this domain. |
41925 | | -+ command enable |
41926 | | -+ |
41927 | | -+ # Disable events in this domain. |
41928 | | -+ command disable |
41929 | | -+ |
41930 | | -+ # Select a device in response to a DeviceAccess.deviceRequestPrompted event. |
41931 | | -+ command selectPrompt |
41932 | | -+ parameters |
41933 | | -+ RequestId id |
41934 | | -+ DeviceId deviceId |
41935 | | -+ |
41936 | | -+ # Cancel a prompt in response to a DeviceAccess.deviceRequestPrompted event. |
41937 | | -+ command cancelPrompt |
41938 | | -+ parameters |
41939 | | -+ RequestId id |
41940 | | -+ |
41941 | | -+ # A device request opened a user prompt to select a device. Respond with the |
41942 | | -+ # selectPrompt or cancelPrompt command. |
41943 | | -+ event deviceRequestPrompted |
41944 | | -+ parameters |
41945 | | -+ RequestId id |
41946 | | -+ array of PromptDevice devices |
41947 | 41937 | ``` |
0 commit comments