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

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

Issue 2938543006: Remove references to groups directly stored on ComputedStyle in .cpp file (Closed)
Patch Set: Created 3 years, 6 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 the fields we want to diff in the various diff function s 2 // This file specifies the fields we want to diff in the various diff function s
3 // in ComputedStyle. 3 // in ComputedStyle.
4 4
5 parameters: { 5 parameters: {
6 // The name parameter represents the name of the function to be created. 6 // The name parameter represents the name of the function to be created.
7 7
8 fields_to_diff: { 8 fields_to_diff: {
9 default: [], 9 default: [],
10 }, 10 },
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 field_dependencies: ["border-image"] 328 field_dependencies: ["border-image"]
329 }, 329 },
330 ] 330 ]
331 }, 331 },
332 { 332 {
333 name: "UpdatePropertySpecificDifferencesBackdropFilter", 333 name: "UpdatePropertySpecificDifferencesBackdropFilter",
334 fields_to_diff: ["BackdropFilter"], 334 fields_to_diff: ["BackdropFilter"],
335 }, 335 },
336 { 336 {
337 name: "UpdatePropertySpecificDifferencesTextDecorationOrColor", 337 name: "UpdatePropertySpecificDifferencesTextDecorationOrColor",
338 fields_to_diff: ["text-decoration-style", "text-decoration-color", 338 fields_to_diff: ["color", "VisitedLinkColor", "TextDecoration",
339 "VisitedLinkTextDecorationColor", "TextEmphasisFill", 339 "text-decoration-style", "text-decoration-color",
340 "text-underline-position", "text-decoration-skip", "AppliedTextDecoratio ns"], 340 "VisitedLinkTextDecorationColor", "TextEmphasisFill",
341 "text-underline-position", "text-decoration-skip", "AppliedTextD ecorations"],
341 methods_to_diff: [ 342 methods_to_diff: [
342 { 343 {
344 method: "HasSimpleUnderlineInternal()",
345 field_dependencies: ["HasSimpleUnderline"]
346 },
347 {
343 method: "TextFillColor()", 348 method: "TextFillColor()",
344 field_dependencies: ["-webkit-text-fill-color"] 349 field_dependencies: ["-webkit-text-fill-color"]
345 }, 350 },
346 { 351 {
347 method: "TextStrokeColor()", 352 method: "TextStrokeColor()",
348 field_dependencies: ["-webkit-text-stroke-color"] 353 field_dependencies: ["-webkit-text-stroke-color"]
349 }, 354 },
350 { 355 {
351 method: "TextEmphasisColor()", 356 method: "TextEmphasisColor()",
352 field_dependencies: ["-webkit-text-emphasis-color"] 357 field_dependencies: ["-webkit-text-emphasis-color"]
(...skipping 15 matching lines...) Expand all
368 field_dependencies: ["caret-color"] 373 field_dependencies: ["caret-color"]
369 }, 374 },
370 { 375 {
371 method: "VisitedLinkCaretColor()", 376 method: "VisitedLinkCaretColor()",
372 field_dependencies: ["VisitedLinkCaretColor"] 377 field_dependencies: ["VisitedLinkCaretColor"]
373 }, 378 },
374 ] 379 ]
375 }, 380 },
376 ], 381 ],
377 } 382 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698