|
Lines 56-61
a/Source/WebCore/rendering/style/RenderStyle.h_sec1
|
| 56 |
#include "StyleFilterData.h" |
56 |
#include "StyleFilterData.h" |
| 57 |
#endif |
57 |
#endif |
| 58 |
#include "StyleFlexibleBoxData.h" |
58 |
#include "StyleFlexibleBoxData.h" |
|
|
59 |
#if ENABLE(CSS_GRID_LAYOUT) |
| 60 |
#include "StyleGridElementData.h" |
| 61 |
#endif |
| 59 |
#include "StyleInheritedData.h" |
62 |
#include "StyleInheritedData.h" |
| 60 |
#include "StyleMarqueeData.h" |
63 |
#include "StyleMarqueeData.h" |
| 61 |
#include "StyleMultiColData.h" |
64 |
#include "StyleMultiColData.h" |
|
Lines 719-724
public:
a/Source/WebCore/rendering/style/RenderStyle.h_sec2
|
| 719 |
EFlexAlign flexAlign() const { return static_cast<EFlexAlign>(rareNonInheritedData->m_flexibleBox->m_flexAlign); } |
722 |
EFlexAlign flexAlign() const { return static_cast<EFlexAlign>(rareNonInheritedData->m_flexibleBox->m_flexAlign); } |
| 720 |
EFlexFlow flexFlow() const { return static_cast<EFlexFlow>(rareNonInheritedData->m_flexibleBox->m_flexFlow); } |
723 |
EFlexFlow flexFlow() const { return static_cast<EFlexFlow>(rareNonInheritedData->m_flexibleBox->m_flexFlow); } |
| 721 |
|
724 |
|
|
|
725 |
#if ENABLE(CSS_GRID_LAYOUT) |
| 726 |
Length gridColumns() const { return rareNonInheritedData->m_gridLayout->m_gridColumns; } |
| 727 |
Length gridRows() const { return rareNonInheritedData->m_gridLayout->m_gridRows; } |
| 728 |
#endif |
| 729 |
|
| 722 |
const ShadowData* boxShadow() const { return rareNonInheritedData->m_boxShadow.get(); } |
730 |
const ShadowData* boxShadow() const { return rareNonInheritedData->m_boxShadow.get(); } |
| 723 |
void getBoxShadowExtent(LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(boxShadow(), top, right, bottom, left); } |
731 |
void getBoxShadowExtent(LayoutUnit& top, LayoutUnit& right, LayoutUnit& bottom, LayoutUnit& left) const { getShadowExtent(boxShadow(), top, right, bottom, left); } |
| 724 |
void getBoxShadowHorizontalExtent(LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(boxShadow(), left, right); } |
732 |
void getBoxShadowHorizontalExtent(LayoutUnit& left, LayoutUnit& right) const { getShadowHorizontalExtent(boxShadow(), left, right); } |
|
Lines 1125-1130
public:
a/Source/WebCore/rendering/style/RenderStyle.h_sec3
|
| 1125 |
void setFlexPack(EFlexPack p) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexPack, p); } |
1133 |
void setFlexPack(EFlexPack p) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexPack, p); } |
| 1126 |
void setFlexAlign(EFlexAlign a) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexAlign, a); } |
1134 |
void setFlexAlign(EFlexAlign a) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexAlign, a); } |
| 1127 |
void setFlexFlow(EFlexFlow flow) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexFlow, flow); } |
1135 |
void setFlexFlow(EFlexFlow flow) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexFlow, flow); } |
|
|
1136 |
#if ENABLE(CSS_GRID_LAYOUT) |
| 1137 |
void setGridColumns(Length length) { SET_VAR(rareNonInheritedData.access()->m_gridLayout, m_gridColumns, length); } |
| 1138 |
void setGridRows(Length length) { SET_VAR(rareNonInheritedData.access()->m_gridLayout, m_gridRows, length); } |
| 1139 |
#endif |
| 1140 |
|
| 1128 |
void setMarqueeIncrement(const Length& f) { SET_VAR(rareNonInheritedData.access()->m_marquee, increment, f); } |
1141 |
void setMarqueeIncrement(const Length& f) { SET_VAR(rareNonInheritedData.access()->m_marquee, increment, f); } |
| 1129 |
void setMarqueeSpeed(int f) { SET_VAR(rareNonInheritedData.access()->m_marquee, speed, f); } |
1142 |
void setMarqueeSpeed(int f) { SET_VAR(rareNonInheritedData.access()->m_marquee, speed, f); } |
| 1130 |
void setMarqueeDirection(EMarqueeDirection d) { SET_VAR(rareNonInheritedData.access()->m_marquee, direction, d); } |
1143 |
void setMarqueeDirection(EMarqueeDirection d) { SET_VAR(rareNonInheritedData.access()->m_marquee, direction, d); } |
|
Lines 1475-1480
public:
a/Source/WebCore/rendering/style/RenderStyle.h_sec4
|
| 1475 |
static StyleImage* initialMaskBoxImageSource() { return 0; } |
1488 |
static StyleImage* initialMaskBoxImageSource() { return 0; } |
| 1476 |
static PrintColorAdjust initialPrintColorAdjust() { return PrintColorAdjustEconomy; } |
1489 |
static PrintColorAdjust initialPrintColorAdjust() { return PrintColorAdjustEconomy; } |
| 1477 |
|
1490 |
|
|
|
1491 |
#if ENABLE(CSS_GRID_LAYOUT) |
| 1492 |
static Length initialGridColumns() { return Length(Undefined); } |
| 1493 |
static Length initialGridRows() { return Length(Undefined); } |
| 1494 |
#endif |
| 1495 |
|
| 1478 |
static const AtomicString& initialLineGrid() { return nullAtom; } |
1496 |
static const AtomicString& initialLineGrid() { return nullAtom; } |
| 1479 |
static LineGridSnap initialLineGridSnap() { return LineGridSnapNone; } |
1497 |
static LineGridSnap initialLineGridSnap() { return LineGridSnapNone; } |
| 1480 |
|
1498 |
|