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

Unified Diff: third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.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/line/SVGInlineTextBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
index 3a8fd042b940d86f6e1127148d54e0e258a0f0d6..f7eb0f774e3a1ca61ec12185d8962cd7f4e7868d 100644
--- a/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/line/SVGInlineTextBox.cpp
@@ -180,15 +180,11 @@ TextRun SVGInlineTextBox::constructTextRun(
RELEASE_ASSERT(!text.needsLayout());
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, direction(),
dirOverride() ||
style.rtlOrdering() == VisualOrder /* directionalOverride */);
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp ('k') | third_party/WebKit/Source/core/loader/DocumentWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698