Skip to content

Commit 50eddc4

Browse files
committed
Roll protocol to r1595872
1 parent 374f160 commit 50eddc4

File tree

10 files changed

+73
-142
lines changed

10 files changed

+73
-142
lines changed

changelog.md

Lines changed: 66 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,72 @@
11

22

3+
## Roll protocol to r1595872 — _2026-03-07T04:48:07.000Z_
4+
###### Diff: [`374f160...05d7571`](https://github.com/ChromeDevTools/devtools-protocol/compare/374f160...05d7571)
5+
6+
```diff
7+
@@ domains/Audits.pdl:258 @@ experimental domain Audits
8+
boolean isWarning
9+
SharedArrayBufferIssueType type
10+
11+
- type LowTextContrastIssueDetails extends object
12+
- properties
13+
- DOM.BackendNodeId violatingNodeId
14+
- string violatingNodeSelector
15+
- number contrastRatio
16+
- number thresholdAA
17+
- number thresholdAAA
18+
- string fontSize
19+
- string fontWeight
20+
-
21+
# Details for a CORS related issue, e.g. a warning or error related to
22+
# CORS RFC1918 enforcement.
23+
type CorsIssueDetails extends object
24+
@@ -744,7 +734,6 @@ experimental domain Audits
25+
HeavyAdIssue
26+
ContentSecurityPolicyIssue
27+
SharedArrayBufferIssue
28+
- LowTextContrastIssue
29+
CorsIssue
30+
AttributionReportingIssue
31+
QuirksModeIssue
32+
@@ -781,7 +770,6 @@ experimental domain Audits
33+
optional HeavyAdIssueDetails heavyAdIssueDetails
34+
optional ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails
35+
optional SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails
36+
- optional LowTextContrastIssueDetails lowTextContrastIssueDetails
37+
optional CorsIssueDetails corsIssueDetails
38+
optional AttributionReportingIssueDetails attributionReportingIssueDetails
39+
optional QuirksModeIssueDetails quirksModeIssueDetails
40+
@@ -849,13 +837,6 @@ experimental domain Audits
41+
# `issueAdded` event.
42+
command enable
43+
44+
- # Runs the contrast check for the target page. Found issues are reported
45+
- # using Audits.issueAdded event.
46+
- command checkContrast
47+
- parameters
48+
- # Whether to report WCAG AAA level issues. Default is false.
49+
- optional boolean reportAAA
50+
-
51+
# Runs the form issues check for the target page. Found issues are reported
52+
# using Audits.issueAdded event.
53+
command checkFormsIssues
54+
diff --git a/pdl/domains/Page.pdl b/pdl/domains/Page.pdl
55+
index 59b5e038..76d6ed49 100644
56+
--- a/pdl/domains/Page.pdl
57+
+++ b/pdl/domains/Page.pdl
58+
@@ -1537,6 +1537,7 @@ domain Page
59+
BackForwardCacheDisabledForPrerender
60+
UserAgentOverrideDiffers
61+
ForegroundCacheLimit
62+
+ ForwardCacheDisabled
63+
BrowsingInstanceNotSwapped
64+
BackForwardCacheDisabledForDelegate
65+
UnloadHandlerExistsInMainFrame
66+
```
67+
368
## Roll protocol to r1594462 — _2026-03-05T04:56:16.000Z_
4-
###### Diff: [`b888df9...832b3b1`](https://github.com/ChromeDevTools/devtools-protocol/compare/b888df9...832b3b1)
69+
###### Diff: [`b888df9...374f160`](https://github.com/ChromeDevTools/devtools-protocol/compare/b888df9...374f160)
570

671
```diff
772
@@ domains/Audits.pdl:438 @@ experimental domain Audits
@@ -42294,31 +42359,4 @@ index 0dbdc01d..7a3c772c 100644
4229442359

4229542360
# Fired when a prerender attempt is updated.
4229642361
event prerenderStatusUpdated
42297-
```
42298-
42299-
## Roll protocol to r1141857 — _2023-05-10T04:26:34.000Z_
42300-
###### Diff: [`1e3d3e0...53a0f38`](https://github.com/ChromeDevTools/devtools-protocol/compare/1e3d3e0...53a0f38)
42301-
42302-
```diff
42303-
@@ browser_protocol.pdl:11068 @@ experimental domain FedCm
42304-
SignIn
42305-
SignUp
42306-
42307-
+ # Whether the dialog shown is an account chooser or an auto re-authentication dialog.
42308-
+ type DialogType extends string
42309-
+ enum
42310-
+ AccountChooser
42311-
+ AutoReauthn
42312-
+
42313-
# Corresponds to IdentityRequestAccount
42314-
type Account extends object
42315-
properties
42316-
@@ -11086,6 +11092,7 @@ experimental domain FedCm
42317-
event dialogShown
42318-
parameters
42319-
string dialogId
42320-
+ DialogType dialogType
42321-
array of Account accounts
42322-
# These exist primarily so that the caller can verify the
42323-
# RP context was used appropriately.
4232442362
```

json/browser_protocol.json

Lines changed: 1 addition & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1471,40 +1471,6 @@
14711471
}
14721472
]
14731473
},
1474-
{
1475-
"id": "LowTextContrastIssueDetails",
1476-
"type": "object",
1477-
"properties": [
1478-
{
1479-
"name": "violatingNodeId",
1480-
"$ref": "DOM.BackendNodeId"
1481-
},
1482-
{
1483-
"name": "violatingNodeSelector",
1484-
"type": "string"
1485-
},
1486-
{
1487-
"name": "contrastRatio",
1488-
"type": "number"
1489-
},
1490-
{
1491-
"name": "thresholdAA",
1492-
"type": "number"
1493-
},
1494-
{
1495-
"name": "thresholdAAA",
1496-
"type": "number"
1497-
},
1498-
{
1499-
"name": "fontSize",
1500-
"type": "string"
1501-
},
1502-
{
1503-
"name": "fontWeight",
1504-
"type": "string"
1505-
}
1506-
]
1507-
},
15081474
{
15091475
"id": "CorsIssueDetails",
15101476
"description": "Details for a CORS related issue, e.g. a warning or error related to\nCORS RFC1918 enforcement.",
@@ -2340,7 +2306,6 @@
23402306
"HeavyAdIssue",
23412307
"ContentSecurityPolicyIssue",
23422308
"SharedArrayBufferIssue",
2343-
"LowTextContrastIssue",
23442309
"CorsIssue",
23452310
"AttributionReportingIssue",
23462311
"QuirksModeIssue",
@@ -2401,11 +2366,6 @@
24012366
"optional": true,
24022367
"$ref": "SharedArrayBufferIssueDetails"
24032368
},
2404-
{
2405-
"name": "lowTextContrastIssueDetails",
2406-
"optional": true,
2407-
"$ref": "LowTextContrastIssueDetails"
2408-
},
24092369
{
24102370
"name": "corsIssueDetails",
24112371
"optional": true,
@@ -2611,18 +2571,6 @@
26112571
"name": "enable",
26122572
"description": "Enables issues domain, sends the issues collected so far to the client by means of the\n`issueAdded` event."
26132573
},
2614-
{
2615-
"name": "checkContrast",
2616-
"description": "Runs the contrast check for the target page. Found issues are reported\nusing Audits.issueAdded event.",
2617-
"parameters": [
2618-
{
2619-
"name": "reportAAA",
2620-
"description": "Whether to report WCAG AAA level issues. Default is false.",
2621-
"optional": true,
2622-
"type": "boolean"
2623-
}
2624-
]
2625-
},
26262574
{
26272575
"name": "checkFormsIssues",
26282576
"description": "Runs the form issues check for the target page. Found issues are reported\nusing Audits.issueAdded event.",
@@ -22960,6 +22908,7 @@
2296022908
"BackForwardCacheDisabledForPrerender",
2296122909
"UserAgentOverrideDiffers",
2296222910
"ForegroundCacheLimit",
22911+
"ForwardCacheDisabled",
2296322912
"BrowsingInstanceNotSwapped",
2296422913
"BackForwardCacheDisabledForDelegate",
2296522914
"UnloadHandlerExistsInMainFrame",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1594462",
3+
"version": "0.0.1595872",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Audits.pdl

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -258,16 +258,6 @@ experimental domain Audits
258258
boolean isWarning
259259
SharedArrayBufferIssueType type
260260

261-
type LowTextContrastIssueDetails extends object
262-
properties
263-
DOM.BackendNodeId violatingNodeId
264-
string violatingNodeSelector
265-
number contrastRatio
266-
number thresholdAA
267-
number thresholdAAA
268-
string fontSize
269-
string fontWeight
270-
271261
# Details for a CORS related issue, e.g. a warning or error related to
272262
# CORS RFC1918 enforcement.
273263
type CorsIssueDetails extends object
@@ -744,7 +734,6 @@ experimental domain Audits
744734
HeavyAdIssue
745735
ContentSecurityPolicyIssue
746736
SharedArrayBufferIssue
747-
LowTextContrastIssue
748737
CorsIssue
749738
AttributionReportingIssue
750739
QuirksModeIssue
@@ -781,7 +770,6 @@ experimental domain Audits
781770
optional HeavyAdIssueDetails heavyAdIssueDetails
782771
optional ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails
783772
optional SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails
784-
optional LowTextContrastIssueDetails lowTextContrastIssueDetails
785773
optional CorsIssueDetails corsIssueDetails
786774
optional AttributionReportingIssueDetails attributionReportingIssueDetails
787775
optional QuirksModeIssueDetails quirksModeIssueDetails
@@ -849,13 +837,6 @@ experimental domain Audits
849837
# `issueAdded` event.
850838
command enable
851839

852-
# Runs the contrast check for the target page. Found issues are reported
853-
# using Audits.issueAdded event.
854-
command checkContrast
855-
parameters
856-
# Whether to report WCAG AAA level issues. Default is false.
857-
optional boolean reportAAA
858-
859840
# Runs the form issues check for the target page. Found issues are reported
860841
# using Audits.issueAdded event.
861842
command checkFormsIssues

pdl/domains/Page.pdl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,6 +1537,7 @@ domain Page
15371537
BackForwardCacheDisabledForPrerender
15381538
UserAgentOverrideDiffers
15391539
ForegroundCacheLimit
1540+
ForwardCacheDisabled
15401541
BrowsingInstanceNotSwapped
15411542
BackForwardCacheDisabledForDelegate
15421543
UnloadHandlerExistsInMainFrame

types/protocol-mapping.d.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1872,14 +1872,6 @@ export namespace ProtocolMapping {
18721872
paramsType: [];
18731873
returnType: void;
18741874
};
1875-
/**
1876-
* Runs the contrast check for the target page. Found issues are reported
1877-
* using Audits.issueAdded event.
1878-
*/
1879-
'Audits.checkContrast': {
1880-
paramsType: [Protocol.Audits.CheckContrastRequest?];
1881-
returnType: void;
1882-
};
18831875
/**
18841876
* Runs the form issues check for the target page. Found issues are reported
18851877
* using Audits.issueAdded event.

types/protocol-proxy-api.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -843,12 +843,6 @@ export namespace ProtocolProxyApi {
843843
*/
844844
enable(): Promise<void>;
845845

846-
/**
847-
* Runs the contrast check for the target page. Found issues are reported
848-
* using Audits.issueAdded event.
849-
*/
850-
checkContrast(params: Protocol.Audits.CheckContrastRequest): Promise<void>;
851-
852846
/**
853847
* Runs the form issues check for the target page. Found issues are reported
854848
* using Audits.issueAdded event.

types/protocol-tests-proxy-api.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -899,12 +899,6 @@ export namespace ProtocolTestsProxyApi {
899899
*/
900900
enable(): Promise<{id: number, result: void, sessionId: string}>;
901901

902-
/**
903-
* Runs the contrast check for the target page. Found issues are reported
904-
* using Audits.issueAdded event.
905-
*/
906-
checkContrast(params: Protocol.Audits.CheckContrastRequest): Promise<{id: number, result: void, sessionId: string}>;
907-
908902
/**
909903
* Runs the form issues check for the target page. Found issues are reported
910904
* using Audits.issueAdded event.

0 commit comments

Comments
 (0)