|
1 | 1 |
|
2 | 2 |
|
| 3 | +## Roll protocol to r1662358 — _2026-07-15T05:18:52.000Z_ |
| 4 | +###### Diff: [`0837097...8fe6908`](https://github.com/ChromeDevTools/devtools-protocol/compare/0837097...8fe6908) |
| 5 | + |
| 6 | +```diff |
| 7 | +@@ domains/Audits.pdl:270 @@ experimental domain Audits |
| 8 | + optional Network.IPAddressSpace resourceIPAddressSpace |
| 9 | + optional Network.ClientSecurityState clientSecurityState |
| 10 | + |
| 11 | +- type AttributionReportingIssueType extends string |
| 12 | +- enum |
| 13 | +- PermissionPolicyDisabled |
| 14 | +- UntrustworthyReportingOrigin |
| 15 | +- InsecureContext |
| 16 | +- # TODO(apaseltiner): Rename this to InvalidRegisterSourceHeader |
| 17 | +- InvalidHeader |
| 18 | +- InvalidRegisterTriggerHeader |
| 19 | +- SourceAndTriggerHeaders |
| 20 | +- SourceIgnored |
| 21 | +- TriggerIgnored |
| 22 | +- OsSourceIgnored |
| 23 | +- OsTriggerIgnored |
| 24 | +- InvalidRegisterOsSourceHeader |
| 25 | +- InvalidRegisterOsTriggerHeader |
| 26 | +- WebAndOsHeaders |
| 27 | +- NoWebOrOsSupport |
| 28 | +- NavigationRegistrationWithoutTransientUserActivation |
| 29 | +- InvalidInfoHeader |
| 30 | +- NoRegisterSourceHeader |
| 31 | +- NoRegisterTriggerHeader |
| 32 | +- NoRegisterOsSourceHeader |
| 33 | +- NoRegisterOsTriggerHeader |
| 34 | +- NavigationRegistrationUniqueScopeAlreadySet |
| 35 | +- |
| 36 | + type SharedDictionaryError extends string |
| 37 | + enum |
| 38 | + UseErrorCrossOriginNoCorsRequest |
| 39 | +@@ -368,15 +343,6 @@ experimental domain Audits |
| 40 | + ReportingEndpointNotToken |
| 41 | + InvalidUrlPattern |
| 42 | + |
| 43 | +- # Details for issues around "Attribution Reporting API" usage. |
| 44 | +- # Explainer: https://github.com/WICG/attribution-reporting-api |
| 45 | +- type AttributionReportingIssueDetails extends object |
| 46 | +- properties |
| 47 | +- AttributionReportingIssueType violationType |
| 48 | +- optional AffectedRequest request |
| 49 | +- optional DOM.BackendNodeId violatingNodeId |
| 50 | +- optional string invalidParameter |
| 51 | +- |
| 52 | + # Details for issues about documents in Quirks Mode |
| 53 | + # or Limited Quirks Mode that affects page layouting. |
| 54 | + type QuirksModeIssueDetails extends object |
| 55 | +@@ -778,6 +744,16 @@ experimental domain Audits |
| 56 | + # The stack trace at the time of the intervention. |
| 57 | + optional Runtime.StackTrace stackTrace |
| 58 | + |
| 59 | ++ # Details for issues about lazy-loaded images without explicit dimensions. |
| 60 | ++ type LazyLoadImageIssueDetails extends object |
| 61 | ++ properties |
| 62 | ++ # DOM node of the problematic HTMLImageElement. |
| 63 | ++ DOM.BackendNodeId nodeId |
| 64 | ++ # URL or src attribute of the image. |
| 65 | ++ string url |
| 66 | ++ # Frame containing the image. |
| 67 | ++ Page.FrameId frameId |
| 68 | ++ |
| 69 | + # A unique identifier for the type of issue. Each type may use one of the |
| 70 | + # optional fields in InspectorIssueDetails to convey more specific |
| 71 | + # information about the kind of issue. |
| 72 | +@@ -790,7 +766,6 @@ experimental domain Audits |
| 73 | + ContentSecurityPolicyIssue |
| 74 | + SharedArrayBufferIssue |
| 75 | + CorsIssue |
| 76 | +- AttributionReportingIssue |
| 77 | + QuirksModeIssue |
| 78 | + PartitioningBlobURLIssue |
| 79 | + # Deprecated |
| 80 | +@@ -814,6 +789,7 @@ experimental domain Audits |
| 81 | + PerformanceIssue |
| 82 | + SelectivePermissionsInterventionIssue |
| 83 | + EmailVerificationRequestIssue |
| 84 | ++ LazyLoadImageIssue |
| 85 | + |
| 86 | + # This struct holds a list of optional fields with additional information |
| 87 | + # specific to the kind of issue. When adding a new issue code, please also |
| 88 | +@@ -827,7 +803,6 @@ experimental domain Audits |
| 89 | + optional ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails |
| 90 | + optional SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails |
| 91 | + optional CorsIssueDetails corsIssueDetails |
| 92 | +- optional AttributionReportingIssueDetails attributionReportingIssueDetails |
| 93 | + optional QuirksModeIssueDetails quirksModeIssueDetails |
| 94 | + optional PartitioningBlobURLIssueDetails partitioningBlobURLIssueDetails |
| 95 | + deprecated optional NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails |
| 96 | +@@ -850,6 +825,7 @@ experimental domain Audits |
| 97 | + optional PerformanceIssueDetails performanceIssueDetails |
| 98 | + optional SelectivePermissionsInterventionIssueDetails selectivePermissionsInterventionIssueDetails |
| 99 | + optional EmailVerificationRequestIssueDetails emailVerificationRequestIssueDetails |
| 100 | ++ optional LazyLoadImageIssueDetails lazyLoadImageIssueDetails |
| 101 | + |
| 102 | + # A unique id for a DevTools inspector issue. Allows other entities (e.g. |
| 103 | + # exceptions, CDP message, console messages, etc.) to reference an issue. |
| 104 | +diff --git a/pdl/domains/Page.pdl b/pdl/domains/Page.pdl |
| 105 | +index 414867f5..26941081 100644 |
| 106 | +--- a/pdl/domains/Page.pdl |
| 107 | ++++ b/pdl/domains/Page.pdl |
| 108 | +@@ -74,7 +74,6 @@ domain Page |
| 109 | + all-screens-capture |
| 110 | + ambient-light-sensor |
| 111 | + aria-notify |
| 112 | +- attribution-reporting |
| 113 | + autofill |
| 114 | + autoplay |
| 115 | + bluetooth |
| 116 | +``` |
| 117 | + |
3 | 118 | ## Roll protocol to r1660672 — _2026-07-11T05:25:49.000Z_ |
4 | | -###### Diff: [`f6ba0b1...6ced80f`](https://github.com/ChromeDevTools/devtools-protocol/compare/f6ba0b1...6ced80f) |
| 119 | +###### Diff: [`f6ba0b1...0837097`](https://github.com/ChromeDevTools/devtools-protocol/compare/f6ba0b1...0837097) |
5 | 120 |
|
6 | 121 | ```diff |
7 | 122 | @@ domains/Network.pdl:2263 @@ domain Network |
@@ -42819,27 +42934,4 @@ index 4754f17c..8dad9c98 100644 |
42819 | 42934 | # The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0). |
42820 | 42935 | experimental optional integer twist |
42821 | 42936 | # X delta in CSS pixels for mouse wheel event (default: 0). |
42822 | | -``` |
42823 | | - |
42824 | | -## Roll protocol to r1206220 — _2023-10-06T04:26:22.000Z_ |
42825 | | -###### Diff: [`40ddf1a...f050ff5`](https://github.com/ChromeDevTools/devtools-protocol/compare/40ddf1a...f050ff5) |
42826 | | - |
42827 | | -```diff |
42828 | | -@@ browser_protocol.pdl:9824 @@ experimental domain Storage |
42829 | | - properties |
42830 | | - Network.TimeSinceEpoch time |
42831 | | - # duration in seconds |
42832 | | -- optional integer expiry |
42833 | | -- # eventReportWindow and eventReportWindows are mutually exclusive |
42834 | | -+ integer expiry |
42835 | | -+ AttributionReportingEventReportWindows eventReportWindows |
42836 | | - # duration in seconds |
42837 | | -- optional integer eventReportWindow |
42838 | | -- optional AttributionReportingEventReportWindows eventReportWindows |
42839 | | -- # duration in seconds |
42840 | | -- optional integer aggregatableReportWindow |
42841 | | -+ integer aggregatableReportWindow |
42842 | | - AttributionReportingSourceType type |
42843 | | - string sourceOrigin |
42844 | | - string reportingOrigin |
42845 | 42937 | ``` |
0 commit comments