OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "core/layout/api/LineLayoutItem.h" |
| 7 |
| 8 #include "core/layout/LayoutObject.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 LineLayoutItem::LineLayoutItem(LayoutObject* layoutObject) |
| 13 : m_layoutObject(layoutObject) |
| 14 { |
| 15 } |
| 16 |
| 17 const ComputedStyle* LineLayoutItem::style() const |
| 18 { |
| 19 return m_layoutObject->style(); |
| 20 } |
| 21 |
| 22 const ComputedStyle& LineLayoutItem::styleRef() const |
| 23 { |
| 24 return m_layoutObject->styleRef(); |
| 25 } |
| 26 |
| 27 LineLayoutItem LineLayoutItem::parent() const |
| 28 { |
| 29 return m_layoutObject->parent(); |
| 30 } |
| 31 |
| 32 LineLayoutItem LineLayoutItem::nextSibling() const |
| 33 { |
| 34 return m_layoutObject->nextSibling(); |
| 35 } |
| 36 |
| 37 LineLayoutItem LineLayoutItem::previousSibling() const |
| 38 { |
| 39 return m_layoutObject->previousSibling(); |
| 40 } |
| 41 |
| 42 LineLayoutItem LineLayoutItem::slowFirstChild() const |
| 43 { |
| 44 return m_layoutObject->slowFirstChild(); |
| 45 } |
| 46 |
| 47 LineLayoutItem LineLayoutItem::slowLastChild() const |
| 48 { |
| 49 return m_layoutObject->slowLastChild(); |
| 50 } |
| 51 |
| 52 Document& LineLayoutItem::document() const |
| 53 { |
| 54 return m_layoutObject->document(); |
| 55 } |
| 56 |
| 57 bool LineLayoutItem::preservesNewline() const |
| 58 { |
| 59 return m_layoutObject->preservesNewline(); |
| 60 } |
| 61 |
| 62 unsigned LineLayoutItem::length() const |
| 63 { |
| 64 return m_layoutObject->length(); |
| 65 } |
| 66 |
| 67 bool LineLayoutItem::isFloatingOrOutOfFlowPositioned() const |
| 68 { |
| 69 return m_layoutObject->isFloatingOrOutOfFlowPositioned(); |
| 70 } |
| 71 |
| 72 bool LineLayoutItem::isFloating() const |
| 73 { |
| 74 return m_layoutObject->isFloating(); |
| 75 } |
| 76 |
| 77 bool LineLayoutItem::isOutOfFlowPositioned() const |
| 78 { |
| 79 return m_layoutObject->isOutOfFlowPositioned(); |
| 80 } |
| 81 |
| 82 bool LineLayoutItem::isBR() const |
| 83 { |
| 84 return m_layoutObject->isBR(); |
| 85 } |
| 86 |
| 87 bool LineLayoutItem::isHorizontalWritingMode() const |
| 88 { |
| 89 return m_layoutObject->isHorizontalWritingMode(); |
| 90 } |
| 91 |
| 92 bool LineLayoutItem::isImage() const |
| 93 { |
| 94 return m_layoutObject->isImage(); |
| 95 } |
| 96 |
| 97 bool LineLayoutItem::isLayoutInline() const |
| 98 { |
| 99 return m_layoutObject->isLayoutInline(); |
| 100 } |
| 101 |
| 102 bool LineLayoutItem::isListMarker() const |
| 103 { |
| 104 return m_layoutObject->isListMarker(); |
| 105 } |
| 106 |
| 107 bool LineLayoutItem::isReplaced() const |
| 108 { |
| 109 return m_layoutObject->isReplaced(); |
| 110 } |
| 111 |
| 112 bool LineLayoutItem::isRubyRun() const |
| 113 { |
| 114 return m_layoutObject->isRubyRun(); |
| 115 } |
| 116 |
| 117 bool LineLayoutItem::isSVGInlineText() const |
| 118 { |
| 119 return m_layoutObject->isSVGInlineText(); |
| 120 } |
| 121 |
| 122 bool LineLayoutItem::isTableCell() const |
| 123 { |
| 124 return m_layoutObject->isTableCell(); |
| 125 } |
| 126 |
| 127 bool LineLayoutItem::isText() const |
| 128 { |
| 129 return m_layoutObject->isText(); |
| 130 } |
| 131 |
| 132 } // namespace blink |
OLD | NEW |