summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/build/scripts/core/css/properties
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/build/scripts/core/css/properties')
-rw-r--r--chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/css_properties.h.tmpl1
-rw-r--r--chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/style_builder_functions.tmpl4
2 files changed, 3 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/css_properties.h.tmpl b/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/css_properties.h.tmpl
index 39d359d8e5a..67030438d29 100644
--- a/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/css_properties.h.tmpl
+++ b/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/css_properties.h.tmpl
@@ -49,6 +49,7 @@ namespace {{namespace}} {
(property.font and 'kAffectsFont' or ''),
(property.is_background and 'kBackground' or ''),
(property.is_border and 'kBorder' or ''),
+ (property.is_border_radius and 'kBorderRadius' or ''),
(property.tree_scoped_value and 'kTreeScopedValue' or ''),
(property.valid_for_highlight and 'kValidForHighlight' or ''),
(property.logical_property_group and 'kInLogicalPropertyGroup' or ''),
diff --git a/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/style_builder_functions.tmpl b/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/style_builder_functions.tmpl
index 6e885ec4682..20c8df084d8 100644
--- a/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/style_builder_functions.tmpl
+++ b/chromium/third_party/blink/renderer/build/scripts/core/css/properties/templates/style_builder_functions.tmpl
@@ -387,13 +387,13 @@ To<Longhand>(resolved_property).{{apply_call}};
{% call(property) apply_value(property) %}
GridTrackList track_sizes;
- Vector<GridTrackSize> auto_repeat_track_sizes;
+ Vector<GridTrackSize, 1> auto_repeat_track_sizes;
NamedGridLinesMap named_grid_lines;
OrderedNamedGridLines ordered_named_grid_lines;
NamedGridLinesMap auto_repeat_named_grid_lines;
OrderedNamedGridLines auto_repeat_ordered_named_grid_lines;
AutoRepeatType autoRepeatType = ComputedStyleInitialValues::InitialGridAutoRepeatType();
- size_t auto_repeat_insertion_point =
+ wtf_size_t auto_repeat_insertion_point =
ComputedStyleInitialValues::InitialGridAutoRepeatInsertionPoint();
StyleBuilderConverter::ConvertGridTrackList(
value, track_sizes, named_grid_lines, ordered_named_grid_lines,