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 1498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1509 | 1509 |
1510 bool isSharable() const; | 1510 bool isSharable() const; |
1511 | 1511 |
1512 bool emptyState() const { return noninherited_flags.emptyState; } | 1512 bool emptyState() const { return noninherited_flags.emptyState; } |
1513 void setEmptyState(bool b) { setUnique(); noninherited_flags.emptyState = b;
} | 1513 void setEmptyState(bool b) { setUnique(); noninherited_flags.emptyState = b;
} |
1514 bool firstChildState() const { return noninherited_flags.firstChildState; } | 1514 bool firstChildState() const { return noninherited_flags.firstChildState; } |
1515 void setFirstChildState() { setUnique(); noninherited_flags.firstChildState
= true; } | 1515 void setFirstChildState() { setUnique(); noninherited_flags.firstChildState
= true; } |
1516 bool lastChildState() const { return noninherited_flags.lastChildState; } | 1516 bool lastChildState() const { return noninherited_flags.lastChildState; } |
1517 void setLastChildState() { setUnique(); noninherited_flags.lastChildState =
true; } | 1517 void setLastChildState() { setUnique(); noninherited_flags.lastChildState =
true; } |
1518 | 1518 |
1519 StyleColor visitedDependentDecorationColor() const; | 1519 StyleColor visitedDependentDecorationStyleColor() const; |
| 1520 Color visitedDependentDecorationColor() const; |
1520 Color visitedDependentColor(int colorProperty) const; | 1521 Color visitedDependentColor(int colorProperty) const; |
1521 | 1522 |
1522 void setHasExplicitlyInheritedProperties() { noninherited_flags.explicitInhe
ritance = true; } | 1523 void setHasExplicitlyInheritedProperties() { noninherited_flags.explicitInhe
ritance = true; } |
1523 bool hasExplicitlyInheritedProperties() const { return noninherited_flags.ex
plicitInheritance; } | 1524 bool hasExplicitlyInheritedProperties() const { return noninherited_flags.ex
plicitInheritance; } |
1524 | 1525 |
1525 void setHasCurrentColor() { noninherited_flags.currentColor = true; } | 1526 void setHasCurrentColor() { noninherited_flags.currentColor = true; } |
1526 bool hasCurrentColor() const { return noninherited_flags.currentColor; } | 1527 bool hasCurrentColor() const { return noninherited_flags.currentColor; } |
1527 | 1528 |
1528 // Initial values for all the properties | 1529 // Initial values for all the properties |
1529 static EBorderCollapse initialBorderCollapse() { return BSEPARATE; } | 1530 static EBorderCollapse initialBorderCollapse() { return BSEPARATE; } |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1880 inline bool RenderStyle::hasPseudoElementStyle() const | 1881 inline bool RenderStyle::hasPseudoElementStyle() const |
1881 { | 1882 { |
1882 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; | 1883 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; |
1883 } | 1884 } |
1884 | 1885 |
1885 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); | 1886 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); |
1886 | 1887 |
1887 } // namespace WebCore | 1888 } // namespace WebCore |
1888 | 1889 |
1889 #endif // RenderStyle_h | 1890 #endif // RenderStyle_h |
OLD | NEW |