| Index: third_party/WebKit/Source/core/layout/LayoutScrollbarPart.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.h b/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.h
|
| index 540b08da292d8552f53902653b20216d81096a98..ff76ed921b1b0922ddec7dc498dd21389dae6d59 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutScrollbarPart.h
|
| @@ -91,10 +91,11 @@ class LayoutScrollbarPart final : public LayoutBlock {
|
|
|
| void computePreferredLogicalWidths() override;
|
|
|
| - // Have all padding getters return 0. The important point here is to avoid resolving percents
|
| - // against the containing block, since scroll bar corners don't always have one (so it would
|
| - // crash). Scroll bar corners are not actually laid out, and they don't have child content, so
|
| - // what we return here doesn't really matter.
|
| + // Have all padding getters return 0. The important point here is to avoid
|
| + // resolving percents against the containing block, since scroll bar corners
|
| + // don't always have one (so it would crash). Scroll bar corners are not
|
| + // actually laid out, and they don't have child content, so what we return
|
| + // here doesn't really matter.
|
| LayoutUnit paddingTop() const override { return LayoutUnit(); }
|
| LayoutUnit paddingBottom() const override { return LayoutUnit(); }
|
| LayoutUnit paddingLeft() const override { return LayoutUnit(); }
|
|
|