| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2010 Google Inc. All rights reserved. | 5 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 LayoutUnit borderAndPaddingOver() const { return borderOver() + paddingOver(
); } | 244 LayoutUnit borderAndPaddingOver() const { return borderOver() + paddingOver(
); } |
| 245 LayoutUnit borderAndPaddingUnder() const { return borderUnder() + paddingUnd
er(); } | 245 LayoutUnit borderAndPaddingUnder() const { return borderUnder() + paddingUnd
er(); } |
| 246 | 246 |
| 247 LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBotto
m() + paddingTop() + paddingBottom(); } | 247 LayoutUnit borderAndPaddingHeight() const { return borderTop() + borderBotto
m() + paddingTop() + paddingBottom(); } |
| 248 LayoutUnit borderAndPaddingWidth() const { return borderLeft() + borderRight
() + paddingLeft() + paddingRight(); } | 248 LayoutUnit borderAndPaddingWidth() const { return borderLeft() + borderRight
() + paddingLeft() + paddingRight(); } |
| 249 LayoutUnit borderAndPaddingLogicalHeight() const { return hasBorderOrPadding
() ? borderAndPaddingBefore() + borderAndPaddingAfter() : LayoutUnit(); } | 249 LayoutUnit borderAndPaddingLogicalHeight() const { return hasBorderOrPadding
() ? borderAndPaddingBefore() + borderAndPaddingAfter() : LayoutUnit(); } |
| 250 LayoutUnit borderAndPaddingLogicalWidth() const { return borderStart() + bor
derEnd() + paddingStart() + paddingEnd(); } | 250 LayoutUnit borderAndPaddingLogicalWidth() const { return borderStart() + bor
derEnd() + paddingStart() + paddingEnd(); } |
| 251 LayoutUnit borderAndPaddingLogicalLeft() const { return style()->isHorizonta
lWritingMode() ? borderLeft() + paddingLeft() : borderTop() + paddingTop(); } | 251 LayoutUnit borderAndPaddingLogicalLeft() const { return style()->isHorizonta
lWritingMode() ? borderLeft() + paddingLeft() : borderTop() + paddingTop(); } |
| 252 | 252 |
| 253 LayoutUnit borderLogicalLeft() const { return LayoutUnit(style()->isHorizont
alWritingMode() ? borderLeft() : borderTop()); } | 253 LayoutUnit borderLogicalLeft() const { return LayoutUnit(style()->isHorizont
alWritingMode() ? borderLeft() : borderTop()); } |
| 254 LayoutUnit borderLogicalRight() const { return LayoutUnit(style()->isHorizon
talWritingMode() ? borderRight() : borderBottom()); } |
| 254 | 255 |
| 255 LayoutUnit paddingLogicalWidth() const { return paddingStart() + paddingEnd(
); } | 256 LayoutUnit paddingLogicalWidth() const { return paddingStart() + paddingEnd(
); } |
| 256 LayoutUnit paddingLogicalHeight() const { return paddingBefore() + paddingAf
ter(); } | 257 LayoutUnit paddingLogicalHeight() const { return paddingBefore() + paddingAf
ter(); } |
| 257 | 258 |
| 258 virtual LayoutRectOutsets marginBoxOutsets() const = 0; | 259 virtual LayoutRectOutsets marginBoxOutsets() const = 0; |
| 259 virtual LayoutUnit marginTop() const = 0; | 260 virtual LayoutUnit marginTop() const = 0; |
| 260 virtual LayoutUnit marginBottom() const = 0; | 261 virtual LayoutUnit marginBottom() const = 0; |
| 261 virtual LayoutUnit marginLeft() const = 0; | 262 virtual LayoutUnit marginLeft() const = 0; |
| 262 virtual LayoutUnit marginRight() const = 0; | 263 virtual LayoutUnit marginRight() const = 0; |
| 263 virtual LayoutUnit marginBefore(const ComputedStyle* otherStyle = nullptr) c
onst = 0; | 264 virtual LayoutUnit marginBefore(const ComputedStyle* otherStyle = nullptr) c
onst = 0; |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 OwnPtr<PaintLayer> m_layer; | 392 OwnPtr<PaintLayer> m_layer; |
| 392 | 393 |
| 393 OwnPtr<LayoutBoxModelObjectRareData> m_rareData; | 394 OwnPtr<LayoutBoxModelObjectRareData> m_rareData; |
| 394 }; | 395 }; |
| 395 | 396 |
| 396 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); | 397 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); |
| 397 | 398 |
| 398 } // namespace blink | 399 } // namespace blink |
| 399 | 400 |
| 400 #endif // LayoutBoxModelObject_h | 401 #endif // LayoutBoxModelObject_h |
| OLD | NEW |