Chromium Code Reviews| Index: Source/core/layout/api/LineLayoutBoxModel.h |
| diff --git a/Source/core/layout/api/LineLayoutBoxModel.h b/Source/core/layout/api/LineLayoutBoxModel.h |
| index a97d885b59e761efbf70e0fba004cdbac00d7549..2db6601c66492d24d7b6f77f88314c56bf4cea3f 100644 |
| --- a/Source/core/layout/api/LineLayoutBoxModel.h |
| +++ b/Source/core/layout/api/LineLayoutBoxModel.h |
| @@ -108,6 +108,21 @@ public: |
| return toBoxModel()->paddingAfter(); |
| } |
| + int borderTop() const |
| + { |
| + return toBoxModel()->borderTop(); |
| + } |
| + |
| + int borderLeft() const |
| + { |
| + return toBoxModel()->borderLeft(); |
| + } |
| + |
| + int borderRight() const |
| + { |
| + return toBoxModel()->borderRight(); |
| + } |
| + |
|
eae
2015/09/02 20:32:57
What about borderBottom?
|
| int borderBefore() const |
| { |
| return toBoxModel()->borderBefore(); |