Skip to content

Commit 0a2a85a

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/8727795295181471569 [email protected] Bug: none Change-Id: Ia105fd2bb1b332b9def1f8ab4ffebb52af4078e2 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6118470 Bot-Commit: Devtools Autoroller <devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Wolfgang Beyer <[email protected]> Reviewed-by: Wolfgang Beyer <[email protected]>
1 parent 069edea commit 0a2a85a

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
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': '69d69ddf3aa698b171886551a4a672c5af1ad902',
2525

2626
# Keeping track of the last time we rollerd the browser protocol files.
27-
'chromium_browser_protocol_revision' : '1377df360672f6f594fd58a71b0280c2a40b5f39',
27+
'chromium_browser_protocol_revision' : '2b758d7f6b384321fbd622b9d5e4a4fe3859f7b4',
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/SupportedCSSProperties.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ export const generatedProperties = [
537537
"mask-repeat",
538538
"mask-size",
539539
"mask-type",
540+
"masonry-direction",
540541
"masonry-fill",
541542
"masonry-slack",
542543
"masonry-template-tracks",
@@ -2762,6 +2763,15 @@ export const generatedProperties = [
27622763
],
27632764
"name": "mask-type"
27642765
},
2766+
{
2767+
"keywords": [
2768+
"row",
2769+
"row-reverse",
2770+
"column",
2771+
"column-reverse"
2772+
],
2773+
"name": "masonry-direction"
2774+
},
27652775
{
27662776
"keywords": [
27672777
"normal",
@@ -5539,6 +5549,14 @@ export const generatedPropertyValues = {
55395549
"alpha"
55405550
]
55415551
},
5552+
"masonry-direction": {
5553+
"values": [
5554+
"row",
5555+
"row-reverse",
5556+
"column",
5557+
"column-reverse"
5558+
]
5559+
},
55425560
"masonry-fill": {
55435561
"values": [
55445562
"normal",

front_end/ui/visual_logging/KnownContextValues.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2224,6 +2224,7 @@ export const knownContextValues = new Set([
22242224
'mask-repeat',
22252225
'mask-size',
22262226
'mask-type',
2227+
'masonry-direction',
22272228
'masonry-fill',
22282229
'masonry-slack',
22292230
'masonry-template-tracks',

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

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3806,6 +3806,17 @@
38063806
default_value: "luminance",
38073807
invalidate: ["paint"],
38083808
},
3809+
{
3810+
name: "masonry-direction",
3811+
property_methods: ["CSSValueFromComputedStyleInternal"],
3812+
field_group: "*",
3813+
field_template: "keyword",
3814+
typedom_types: ["Keyword"],
3815+
keywords: ["row", "row-reverse", "column", "column-reverse"],
3816+
default_value: "column",
3817+
invalidate: ["layout", "paint"],
3818+
runtime_flag: "CSSMasonryLayout",
3819+
},
38093820
{
38103821
name: "masonry-fill",
38113822
property_methods: ["CSSValueFromComputedStyleInternal"],
@@ -3814,7 +3825,7 @@
38143825
keywords: ["normal", "reverse"],
38153826
typedom_types: ["Keyword"],
38163827
default_value: "normal",
3817-
invalidate: ["layout"],
3828+
invalidate: ["layout", "paint"],
38183829
runtime_flag: "CSSMasonryLayout",
38193830
},
38203831
{

0 commit comments

Comments
 (0)