| 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 | 626 |
| 627 float zoom() const { return visual->m_zoom; } | 627 float zoom() const { return visual->m_zoom; } |
| 628 float effectiveZoom() const { return rareInheritedData->m_effectiveZoom; } | 628 float effectiveZoom() const { return rareInheritedData->m_effectiveZoom; } |
| 629 | 629 |
| 630 TextDirection direction() const { return static_cast<TextDirection>(inherite
d_flags._direction); } | 630 TextDirection direction() const { return static_cast<TextDirection>(inherite
d_flags._direction); } |
| 631 bool isLeftToRightDirection() const { return direction() == LTR; } | 631 bool isLeftToRightDirection() const { return direction() == LTR; } |
| 632 bool selfOrAncestorHasDirAutoAttribute() const { return rareInheritedData->m
_selfOrAncestorHasDirAutoAttribute; } | 632 bool selfOrAncestorHasDirAutoAttribute() const { return rareInheritedData->m
_selfOrAncestorHasDirAutoAttribute; } |
| 633 | 633 |
| 634 const Length& specifiedLineHeight() const; | 634 const Length& specifiedLineHeight() const; |
| 635 Length lineHeight() const; | 635 Length lineHeight() const; |
| 636 // This function only exists for getComputedStyle, layout is only performed
with the int value |
| 637 float floatComputedLineHeight() const; |
| 636 int computedLineHeight() const; | 638 int computedLineHeight() const; |
| 637 | 639 |
| 638 EWhiteSpace whiteSpace() const { return static_cast<EWhiteSpace>(inherited_f
lags._white_space); } | 640 EWhiteSpace whiteSpace() const { return static_cast<EWhiteSpace>(inherited_f
lags._white_space); } |
| 639 static bool autoWrap(EWhiteSpace ws) | 641 static bool autoWrap(EWhiteSpace ws) |
| 640 { | 642 { |
| 641 // Nowrap and pre don't automatically wrap. | 643 // Nowrap and pre don't automatically wrap. |
| 642 return ws != NOWRAP && ws != PRE; | 644 return ws != NOWRAP && ws != PRE; |
| 643 } | 645 } |
| 644 | 646 |
| 645 bool autoWrap() const | 647 bool autoWrap() const |
| (...skipping 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2046 } | 2048 } |
| 2047 | 2049 |
| 2048 inline bool ComputedStyle::hasPseudoElementStyle() const | 2050 inline bool ComputedStyle::hasPseudoElementStyle() const |
| 2049 { | 2051 { |
| 2050 return noninherited_flags.pseudoBits & ElementPseudoIdMask; | 2052 return noninherited_flags.pseudoBits & ElementPseudoIdMask; |
| 2051 } | 2053 } |
| 2052 | 2054 |
| 2053 } // namespace blink | 2055 } // namespace blink |
| 2054 | 2056 |
| 2055 #endif // ComputedStyle_h | 2057 #endif // ComputedStyle_h |
| OLD | NEW |