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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
index c6faab8092669a6e1933da63f520a0d0b5484b10..052ba1e3cecad2ad5225cfa298de005fd23712bd 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
@@ -214,15 +214,11 @@ TextRun constructTextRun(LayoutSVGInlineText& text,
const ComputedStyle& style = text.styleRef();
TextRun run(
- static_cast<const LChar*>(
- nullptr) // characters, will be set below if non-zero.
- ,
- 0 // length, will be set below if non-zero.
- ,
- 0 // xPos, only relevant with allowTabs=true
- ,
- 0 // padding, only relevant for justified text, not relevant for SVG
- ,
+ // characters, will be set below if non-zero.
+ static_cast<const LChar*>(nullptr),
+ 0, // length, will be set below if non-zero.
+ 0, // xPos, only relevant with allowTabs=true
+ 0, // padding, only relevant for justified text, not relevant for SVG
TextRun::AllowTrailingExpansion, textDirection,
isOverride(style.unicodeBidi()) /* directionalOverride */);
« no previous file with comments | « third_party/WebKit/Source/core/layout/TextAutosizer.cpp ('k') | third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698