| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 464 |
| 465 // Whether or not a positioned element requires normal flow x/y to be comput
ed | 465 // Whether or not a positioned element requires normal flow x/y to be comput
ed |
| 466 // to determine its position. | 466 // to determine its position. |
| 467 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto(
); } | 467 bool hasAutoLeftAndRight() const { return left().isAuto() && right().isAuto(
); } |
| 468 bool hasAutoTopAndBottom() const { return top().isAuto() && bottom().isAuto(
); } | 468 bool hasAutoTopAndBottom() const { return top().isAuto() && bottom().isAuto(
); } |
| 469 bool hasStaticInlinePosition(bool horizontal) const { return horizontal ? ha
sAutoLeftAndRight() : hasAutoTopAndBottom(); } | 469 bool hasStaticInlinePosition(bool horizontal) const { return horizontal ? ha
sAutoLeftAndRight() : hasAutoTopAndBottom(); } |
| 470 bool hasStaticBlockPosition(bool horizontal) const { return horizontal ? has
AutoTopAndBottom() : hasAutoLeftAndRight(); } | 470 bool hasStaticBlockPosition(bool horizontal) const { return horizontal ? has
AutoTopAndBottom() : hasAutoLeftAndRight(); } |
| 471 | 471 |
| 472 EPosition position() const { return static_cast<EPosition>(noninherited_flag
s._position); } | 472 EPosition position() const { return static_cast<EPosition>(noninherited_flag
s._position); } |
| 473 bool hasOutOfFlowPosition() const { return position() == AbsolutePosition ||
position() == FixedPosition; } | 473 bool hasOutOfFlowPosition() const { return position() == AbsolutePosition ||
position() == FixedPosition; } |
| 474 bool hasInFlowPosition() const { return position() == RelativePosition || po
sition() == StickyPosition; } | 474 bool hasInFlowPosition() const { return position() == RelativePosition; } |
| 475 bool hasViewportConstrainedPosition() const { return position() == FixedPosi
tion || position() == StickyPosition; } | 475 bool hasViewportConstrainedPosition() const { return position() == FixedPosi
tion; } |
| 476 EFloat floating() const { return static_cast<EFloat>(noninherited_flags._flo
ating); } | 476 EFloat floating() const { return static_cast<EFloat>(noninherited_flags._flo
ating); } |
| 477 | 477 |
| 478 const Length& width() const { return m_box->width(); } | 478 const Length& width() const { return m_box->width(); } |
| 479 const Length& height() const { return m_box->height(); } | 479 const Length& height() const { return m_box->height(); } |
| 480 const Length& minWidth() const { return m_box->minWidth(); } | 480 const Length& minWidth() const { return m_box->minWidth(); } |
| 481 const Length& maxWidth() const { return m_box->maxWidth(); } | 481 const Length& maxWidth() const { return m_box->maxWidth(); } |
| 482 const Length& minHeight() const { return m_box->minHeight(); } | 482 const Length& minHeight() const { return m_box->minHeight(); } |
| 483 const Length& maxHeight() const { return m_box->maxHeight(); } | 483 const Length& maxHeight() const { return m_box->maxHeight(); } |
| 484 | 484 |
| 485 const Length& logicalWidth() const { return isHorizontalWritingMode() ? widt
h() : height(); } | 485 const Length& logicalWidth() const { return isHorizontalWritingMode() ? widt
h() : height(); } |
| (...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1888 inline bool RenderStyle::hasPseudoElementStyle() const | 1888 inline bool RenderStyle::hasPseudoElementStyle() const |
| 1889 { | 1889 { |
| 1890 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; | 1890 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; |
| 1891 } | 1891 } |
| 1892 | 1892 |
| 1893 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); | 1893 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); |
| 1894 | 1894 |
| 1895 } // namespace WebCore | 1895 } // namespace WebCore |
| 1896 | 1896 |
| 1897 #endif // RenderStyle_h | 1897 #endif // RenderStyle_h |
| OLD | NEW |