| Index: third_party/WebKit/Source/core/layout/LayoutListMarker.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutListMarker.h b/third_party/WebKit/Source/core/layout/LayoutListMarker.h
|
| index fe87eddec6e60bf5a3bdd8239745f49e198111ec..47057d9f42c8b650795c81c2ae86bf216dd5bac7 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutListMarker.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutListMarker.h
|
| @@ -62,6 +62,8 @@ class LayoutListMarker final : public LayoutBox {
|
|
|
| const char* name() const override { return "LayoutListMarker"; }
|
|
|
| + LayoutUnit lineOffset() const { return m_lineOffset; }
|
| +
|
| protected:
|
| void willBeDestroyed() override;
|
|
|
| @@ -112,6 +114,7 @@ class LayoutListMarker final : public LayoutBox {
|
| String m_text;
|
| Persistent<StyleImage> m_image;
|
| LayoutListItem* m_listItem;
|
| + LayoutUnit m_lineOffset;
|
| };
|
|
|
| DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutListMarker, isListMarker());
|
|
|