| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 namespace WebCore { | 95 namespace WebCore { |
| 96 | 96 |
| 97 using std::max; | 97 using std::max; |
| 98 | 98 |
| 99 class FilterOperations; | 99 class FilterOperations; |
| 100 | 100 |
| 101 class AppliedTextDecoration; | 101 class AppliedTextDecoration; |
| 102 class BorderData; | 102 class BorderData; |
| 103 class CounterContent; | 103 class CounterContent; |
| 104 class CursorList; | |
| 105 class Font; | 104 class Font; |
| 106 class FontMetrics; | 105 class FontMetrics; |
| 107 class IntRect; | 106 class IntRect; |
| 108 class Pair; | 107 class Pair; |
| 109 class ShadowList; | 108 class ShadowList; |
| 110 class StyleImage; | 109 class StyleImage; |
| 111 class StyleInheritedData; | 110 class StyleInheritedData; |
| 112 class StyleResolver; | 111 class StyleResolver; |
| 113 class TransformationMatrix; | 112 class TransformationMatrix; |
| 114 | 113 |
| (...skipping 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1876 inline bool RenderStyle::hasPseudoElementStyle() const | 1875 inline bool RenderStyle::hasPseudoElementStyle() const |
| 1877 { | 1876 { |
| 1878 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; | 1877 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; |
| 1879 } | 1878 } |
| 1880 | 1879 |
| 1881 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); | 1880 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); |
| 1882 | 1881 |
| 1883 } // namespace WebCore | 1882 } // namespace WebCore |
| 1884 | 1883 |
| 1885 #endif // RenderStyle_h | 1884 #endif // RenderStyle_h |
| OLD | NEW |