Chromium Code Reviews| 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. |
|
Nico
2016/10/05 01:20:08
this looks a bit weird (but i don't know how to do
jbroman
2016/10/05 13:42:01
Acknowledged.
|
| + 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 */); |