| Index: third_party/WebKit/Source/core/layout/LayoutListMarker.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutListMarker.cpp b/third_party/WebKit/Source/core/layout/LayoutListMarker.cpp
|
| index 644ae0e917022bc02676ba6c482c56f9bb8fe68b..73f4bbb8e0d2d7e920249a15704fe15036bbf5b6 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutListMarker.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutListMarker.cpp
|
| @@ -228,7 +228,7 @@ void LayoutListMarker::computePreferredLogicalWidths()
|
|
|
| const Font& font = style()->font();
|
|
|
| - LayoutUnit logicalWidth = 0;
|
| + LayoutUnit logicalWidth;
|
| switch (listStyleCategory()) {
|
| case ListStyleCategory::None:
|
| break;
|
| @@ -252,8 +252,8 @@ void LayoutListMarker::updateMargins()
|
| {
|
| const FontMetrics& fontMetrics = style()->fontMetrics();
|
|
|
| - LayoutUnit marginStart = 0;
|
| - LayoutUnit marginEnd = 0;
|
| + LayoutUnit marginStart;
|
| + LayoutUnit marginEnd;
|
|
|
| if (isInside()) {
|
| if (isImage()) {
|
|
|