| 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 */);
|
|
|