|
Lines 1081-1086
public:
a/Source/WebCore/rendering/style/RenderStyle.h_sec1
|
| 1081 |
int zIndex() const { return m_box->zIndex(); } |
1081 |
int zIndex() const { return m_box->zIndex(); } |
| 1082 |
void setZIndex(int v) { SET_VAR(m_box, m_hasAutoZIndex, false); SET_VAR(m_box, m_zIndex, v) } |
1082 |
void setZIndex(int v) { SET_VAR(m_box, m_hasAutoZIndex, false); SET_VAR(m_box, m_zIndex, v) } |
| 1083 |
|
1083 |
|
|
|
1084 |
bool hasAspectRatio() const { return m_box->hasAspectRatio(); } |
| 1085 |
void setHasAspectRatio(bool v) { SET_VAR(m_box, m_hasAspectRatio, v); SET_VAR(m_box, m_aspectRatio, 1.0f) } |
| 1086 |
float aspectRatio() const { return m_box->aspectRatio(); } |
| 1087 |
void setAspectRatio(float v) { SET_VAR(m_box, m_hasAspectRatio, true); SET_VAR(m_box, m_aspectRatio, v) } |
| 1088 |
|
| 1084 |
void setWidows(short w) { SET_VAR(rareInheritedData, widows, w); } |
1089 |
void setWidows(short w) { SET_VAR(rareInheritedData, widows, w); } |
| 1085 |
void setOrphans(short o) { SET_VAR(rareInheritedData, orphans, o); } |
1090 |
void setOrphans(short o) { SET_VAR(rareInheritedData, orphans, o); } |
| 1086 |
// For valid values of page-break-inside see http://www.w3.org/TR/CSS21/page.html#page-break-props |
1091 |
// For valid values of page-break-inside see http://www.w3.org/TR/CSS21/page.html#page-break-props |
|
Lines 1342-1347
public:
a/Source/WebCore/rendering/style/RenderStyle.h_sec2
|
| 1342 |
Color visitedDependentColor(int colorProperty) const; |
1347 |
Color visitedDependentColor(int colorProperty) const; |
| 1343 |
|
1348 |
|
| 1344 |
// Initial values for all the properties |
1349 |
// Initial values for all the properties |
|
|
1350 |
static float initialAspectRatio() { return 1.0f; } |
| 1345 |
static EBorderCollapse initialBorderCollapse() { return BSEPARATE; } |
1351 |
static EBorderCollapse initialBorderCollapse() { return BSEPARATE; } |
| 1346 |
static EBorderStyle initialBorderStyle() { return BNONE; } |
1352 |
static EBorderStyle initialBorderStyle() { return BNONE; } |
| 1347 |
static OutlineIsAuto initialOutlineStyleIsAuto() { return AUTO_OFF; } |
1353 |
static OutlineIsAuto initialOutlineStyleIsAuto() { return AUTO_OFF; } |