--- old/modules/javafx.web/src/main/native/Source/WebCore/rendering/RenderListMarker.cpp 2019-01-15 06:21:38.850012535 -0800 +++ new/modules/javafx.web/src/main/native/Source/WebCore/rendering/RenderListMarker.cpp 2019-01-15 06:21:38.790012534 -0800 @@ -1382,8 +1382,8 @@ ASSERT(needsLayout()); LayoutUnit blockOffset; - for (auto* box = parentBox(); box && box != &m_listItem; box = box->parentBox()) - blockOffset += box->logicalTop(); + for (auto* ancestor = parentBox(); ancestor && ancestor != &m_listItem; ancestor = ancestor->parentBox()) + blockOffset += ancestor->logicalTop(); if (style().isLeftToRightDirection()) m_lineOffsetForListItem = m_listItem.logicalLeftOffsetForLine(blockOffset, DoNotIndentText, LayoutUnit()); else