| Index: third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| index 93bc76c42892f8d862c242a1e6d7fc0ed1a2c195..ee887575b725bdbfa26216c5f2998284a7a3a3b5 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
|
| @@ -334,8 +334,8 @@ void LayoutListItem::positionListMarker()
|
| {
|
| if (m_marker && m_marker->parent() && m_marker->parent()->isBox() && !m_marker->isInside() && m_marker->inlineBoxWrapper()) {
|
| LayoutUnit markerOldLogicalLeft = m_marker->logicalLeft();
|
| - LayoutUnit blockOffset = 0;
|
| - LayoutUnit lineOffset = 0;
|
| + LayoutUnit blockOffset;
|
| + LayoutUnit lineOffset;
|
| for (LayoutBox* o = m_marker->parentBox(); o != this; o = o->parentBox()) {
|
| blockOffset += o->logicalTop();
|
| lineOffset += o->logicalLeft();
|
|
|