Skip to content

Commit d857714

Browse files
devtools-ci-autoroll-builderDevtools-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/8709641934838512465 [email protected] Bug: none Change-Id: I30fd6bb3106079b78fdfbb06885956adee82a281 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6725502 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Reviewed-by: Alex Rudenko <[email protected]> Commit-Queue: Alex Rudenko <[email protected]>
1 parent bce01fd commit d857714

File tree

8 files changed

+24
-4
lines changed

8 files changed

+24
-4
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': '6d1ae0f13aae6ad381ca31b17b88a0f5af29ca94',
2525

2626
# Keeping track of the last time we rolled the browser protocol files.
27-
'chromium_browser_protocol_revision' : '8e849d0e0d47bc5de02d6ab41660c5d266ea324b',
27+
'chromium_browser_protocol_revision' : 'b5b53c1e399d6f13e84f19e13bbbbc68d2dc137c',
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/Deprecation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const UIStrings = {
6969
/**
7070
* @description This warning occurs when a site uses <h1> inside <article>, <aside>, <nav>, or <section>. It means the behavior (font size) may change in a future Chrome release, when some special rules are removed from the browser.
7171
*/
72-
H1UserAgentFontSizeInSection: "Found an <h1> tag within an <article>, <aside>, <nav>, or <section> which does not have a specified font-size. The size of this heading text will be changing in this browser in the near future. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements#specifying_a_uniform_font_size_for_h1 for more information.",
72+
H1UserAgentFontSizeInSection: "Found an `&lt;h1&gt;` tag within an `&lt;article&gt;`, `&lt;aside&gt;`, `&lt;nav&gt;`, or `&lt;section&gt;` which does not have a specified font-size. The size of this heading text will be changing in this browser in the near future. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements#specifying_a_uniform_font_size_for_h1 for more information.",
7373
/**
7474
* @description A deprecation warning shown to developers in the DevTools Issues tab when code tries to use the deprecated hostCandidate field, guiding developers to use the equivalent information in the .address and .port fields instead.
7575
*/

front_end/generated/SupportedCSSProperties.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3062,6 +3062,15 @@ export const generatedProperties = [
30623062
],
30633063
"name": "mask-type"
30643064
},
3065+
{
3066+
"longhands": [
3067+
"grid-template-areas",
3068+
"grid-template-columns",
3069+
"masonry-direction",
3070+
"masonry-fill"
3071+
],
3072+
"name": "masonry"
3073+
},
30653074
{
30663075
"keywords": [
30673076
"row",

front_end/models/javascript_metadata/NativeFunctions.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6487,6 +6487,10 @@ export const NativeFunctions = [
64876487
name: "Comment",
64886488
signatures: [["?data"]]
64896489
},
6490+
{
6491+
name: "pseudo",
6492+
signatures: [["type"]]
6493+
},
64906494
{
64916495
name: "parseHTMLUnsafe",
64926496
signatures: [["html","?options"]]

front_end/third_party/chromium/README.chromium

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Name: Dependencies sourced from the upstream `chromium` repository
22
URL: https://source.chromium.org/chromium/chromium/src/+/main:components/variations/proto/devtools/
33
Version: N/A
4-
Revision: 8e849d0e0d47bc5de02d6ab41660c5d266ea324b
4+
Revision: b5b53c1e399d6f13e84f19e13bbbbc68d2dc137c
55
Update Mechanism: Manual (https://crbug.com/428069060)
66
License: BSD-3-Clause
77
License File: LICENSE

front_end/ui/visual_logging/KnownContextValues.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2363,6 +2363,7 @@ export const knownContextValues = new Set([
23632363
'mask-repeat',
23642364
'mask-size',
23652365
'mask-type',
2366+
'masonry',
23662367
'masonry-auto-tracks',
23672368
'masonry-direction',
23682369
'masonry-fill',

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8740,6 +8740,12 @@
87408740
longhands: ["marker-start", "marker-mid", "marker-end"],
87418741
property_methods: ["ParseShorthand", "CSSValueFromComputedStyleInternal"],
87428742
},
8743+
{
8744+
name: "masonry",
8745+
longhands: [ "grid-template-areas", "grid-template-columns", "masonry-direction", "masonry-fill"],
8746+
property_methods: ["ParseShorthand", "CSSValueFromComputedStyleInternal"],
8747+
runtime_flag: "CSSMasonryLayout",
8748+
},
87438749
{
87448750
name: "masonry-flow",
87458751
longhands: ["masonry-direction", "masonry-fill"],

third_party/blink/renderer/core/frame/deprecation/deprecation.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229
},
230230
{
231231
name: "H1UserAgentFontSizeInSection",
232-
message: "Found an <h1> tag within an <article>, <aside>, <nav>, or <section> which does not have a specified font-size. The size of this heading text will be changing in this browser in the near future. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements#specifying_a_uniform_font_size_for_h1 for more information.",
232+
message: "Found an `&lt;h1&gt;` tag within an `&lt;article&gt;`, `&lt;aside&gt;`, `&lt;nav&gt;`, or `&lt;section&gt;` which does not have a specified font-size. The size of this heading text will be changing in this browser in the near future. See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements#specifying_a_uniform_font_size_for_h1 for more information.",
233233
translation_note: "This warning occurs when a site uses <h1> inside <article>, <aside>, <nav>, or <section>. It means the behavior (font size) may change in a future Chrome release, when some special rules are removed from the browser.",
234234
web_features: [
235235
"kH1UserAgentFontSizeInSectionApplied",

0 commit comments

Comments
 (0)