Skip to content

Commit b8dd208

Browse files
AlinaVarkkiDevtools-frontend LUCI CQ
authored andcommitted
Roll browser-protocol
This roll requires a manual review. See http://go/reviewed-rolls for guidance. In case of failures or errors, reach out to someone from config/owner/COMMON_OWNERS. Roll created at https://cr-buildbucket.appspot.com/build/8723322075272989009 [email protected] Bug: none Change-Id: Ia2c4df84c407efb1ef0887a53301fb41aa0d9c5b Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6249097 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Reviewed-by: Simon Zünd <[email protected]> Reviewed-by: Nikolay Vitkov <[email protected]> Commit-Queue: Simon Zünd <[email protected]>
1 parent 7a7404a commit b8dd208

File tree

6 files changed

+53
-8
lines changed

6 files changed

+53
-8
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ vars = {
2424
'inspector_protocol_revision': '940abfc668be2591483f7132145593c6a047f3cf',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : 'b84b48370f6a6f313109ec2d46e89096c7f347ed',
27+
'chromium_browser_protocol_revision' : '2235ea847d2f9200877da48b64e9fb6363070977',
2828

2929
'clang_format_url': 'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/clang/tools/clang-format.git',
3030
'clang_format_revision': '37f6e68a107df43b7d7e044fd36a13cbae3413f2',

front_end/generated/InspectorBackendCommands.js

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

front_end/generated/protocol.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11887,6 +11887,18 @@ export namespace Page {
1188711887
tokensWithStatus: OriginTrialTokenWithStatus[];
1188811888
}
1188911889

11890+
/**
11891+
* Additional information about the frame document's security origin.
11892+
*/
11893+
export interface SecurityOriginDetails {
11894+
/**
11895+
* Indicates whether the frame document's security origin is one
11896+
* of the local hostnames (e.g. "localhost") or IP addresses (IPv4
11897+
* 127.0.0.0/8 or IPv6 ::1).
11898+
*/
11899+
isLocalhost: boolean;
11900+
}
11901+
1189011902
/**
1189111903
* Information about the Frame on the page.
1189211904
*/
@@ -11926,6 +11938,10 @@ export namespace Page {
1192611938
* Frame document's security origin.
1192711939
*/
1192811940
securityOrigin: string;
11941+
/**
11942+
* Additional details about the frame document's security origin.
11943+
*/
11944+
securityOriginDetails?: SecurityOriginDetails;
1192911945
/**
1193011946
* Frame document's mimeType as determined by the browser.
1193111947
*/

third_party/blink/public/devtools_protocol/browser_protocol.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17635,6 +17635,19 @@
1763517635
}
1763617636
]
1763717637
},
17638+
{
17639+
"id": "SecurityOriginDetails",
17640+
"description": "Additional information about the frame document's security origin.",
17641+
"experimental": true,
17642+
"type": "object",
17643+
"properties": [
17644+
{
17645+
"name": "isLocalhost",
17646+
"description": "Indicates whether the frame document's security origin is one\nof the local hostnames (e.g. \"localhost\") or IP addresses (IPv4\n127.0.0.0/8 or IPv6 ::1).",
17647+
"type": "boolean"
17648+
}
17649+
]
17650+
},
1763817651
{
1763917652
"id": "Frame",
1764017653
"description": "Information about the Frame on the page.",
@@ -17685,6 +17698,13 @@
1768517698
"description": "Frame document's security origin.",
1768617699
"type": "string"
1768717700
},
17701+
{
17702+
"name": "securityOriginDetails",
17703+
"description": "Additional details about the frame document's security origin.",
17704+
"experimental": true,
17705+
"optional": true,
17706+
"$ref": "SecurityOriginDetails"
17707+
},
1768817708
{
1768917709
"name": "mimeType",
1769017710
"description": "Frame document's mimeType as determined by the browser.",

third_party/blink/public/devtools_protocol/browser_protocol.pdl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8362,6 +8362,14 @@ domain Page
83628362
OriginTrialStatus status
83638363
array of OriginTrialTokenWithStatus tokensWithStatus
83648364

8365+
# Additional information about the frame document's security origin.
8366+
experimental type SecurityOriginDetails extends object
8367+
properties
8368+
# Indicates whether the frame document's security origin is one
8369+
# of the local hostnames (e.g. "localhost") or IP addresses (IPv4
8370+
# 127.0.0.0/8 or IPv6 ::1).
8371+
boolean isLocalhost
8372+
83658373
# Information about the Frame on the page.
83668374
type Frame extends object
83678375
properties
@@ -8384,6 +8392,8 @@ domain Page
83848392
experimental string domainAndRegistry
83858393
# Frame document's security origin.
83868394
string securityOrigin
8395+
# Additional details about the frame document's security origin.
8396+
experimental optional SecurityOriginDetails securityOriginDetails
83878397
# Frame document's mimeType as determined by the browser.
83888398
string mimeType
83898399
# If the frame failed to load, this contains the URL that could not be loaded. Note that unlike url above, this URL may contain a fragment.

third_party/blink/renderer/core/css/css_properties.json5

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5849,17 +5849,15 @@
58495849
style_builder_custom_functions: ["initial", "inherit", "value"],
58505850
default_value: "TextSizeAdjust::AdjustAuto()",
58515851
getter: "GetTextSizeAdjust",
5852-
// When `TextSizeAdjustImprovements` is enabled, this affects font-size
5853-
// during style building and needs to apply before it.
5852+
// Affects font-size during style building and needs to apply before it.
58545853
priority: 2,
58555854
type_name: "TextSizeAdjust",
58565855
converter: "ConvertTextSizeAdjust",
58575856
keywords: ["none", "auto"],
58585857
typedom_types: ["Keyword", "Percentage"],
5859-
// When `TextSizeAdjustImprovements` is enabled, this affects font-size
5860-
// during style building. Changes to anything related to fonts require
5861-
// that we call style.UpdateFont(), which the incremental path does not
5862-
// do.
5858+
// Affects font-size during style building. Changes to anything related to
5859+
// fonts require that we call style.UpdateFont(), which the incremental
5860+
// path does not do.
58635861
supports_incremental_style: false,
58645862
invalidate: ["layout", "paint"],
58655863
},

0 commit comments

Comments
 (0)