Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Side by Side Diff: third_party/WebKit/Source/core/css/ComputedStyleExtraFields.json5

Issue 2891003002: Store border-image-* on SurroundData in ComputedStyle (Closed)
Patch Set: Store border-image-* on SurroundData in ComputedStyle Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 // This file specifies fields in ComputedStyle that we would like to 2 // This file specifies fields in ComputedStyle that we would like to
3 // generate, but are not CSS properties. 3 // generate, but are not CSS properties.
4 4
5 parameters: { 5 parameters: {
6 // If the field has_custom_compare_and_copy, then it does not appear in 6 // If the field has_custom_compare_and_copy, then it does not appear in
7 // ComputedStyle::operator== and ComputedStyle::CopyNonInheritedFromCached. 7 // ComputedStyle::operator== and ComputedStyle::CopyNonInheritedFromCached.
8 has_custom_compare_and_copy: { 8 has_custom_compare_and_copy: {
9 default: false, 9 default: false,
10 }, 10 },
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 type_name: "EVerticalAlign", 183 type_name: "EVerticalAlign",
184 }, 184 },
185 { 185 {
186 name: "VerticalAlignLength", 186 name: "VerticalAlignLength",
187 field_template: "storage_only", 187 field_template: "storage_only",
188 default_value: "Length()", 188 default_value: "Length()",
189 field_type_path: "platform/Length", 189 field_type_path: "platform/Length",
190 field_group: "box", 190 field_group: "box",
191 }, 191 },
192 { 192 {
193 name: "border", 193 name: "border-image",
194 field_template: "storage_only", 194 field_template: "storage_only",
195 field_type_path: "core/style/BorderData", 195 field_type_path: "core/style/NinePieceImage",
196 field_group: "surround", 196 field_group: "surround",
197 default_value: "BorderData()", 197 default_value: "NinePieceImage()",
198 }, 198 },
199 { 199 {
200 name: "Background", 200 name: "Background",
201 field_template: "storage_only", 201 field_template: "storage_only",
202 field_type_path: "core/style/FillLayer", 202 field_type_path: "core/style/FillLayer",
203 default_value: "FillLayer(kBackgroundFillLayer, true)", 203 default_value: "FillLayer(kBackgroundFillLayer, true)",
204 field_group: "background", 204 field_group: "background",
205 }, 205 },
206 { 206 {
207 name: "BackgroundColor", 207 name: "BackgroundColor",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 { 261 {
262 name: "TextAutosizingMultiplier", 262 name: "TextAutosizingMultiplier",
263 inherited: true, 263 inherited: true,
264 field_template: "storage_only", 264 field_template: "storage_only",
265 type_name: "float", 265 type_name: "float",
266 field_group: "inherited", 266 field_group: "inherited",
267 default_value: "1.0", 267 default_value: "1.0",
268 }, 268 },
269 ], 269 ],
270 } 270 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698