|
@@ -125,6 +125,7 @@ public:
|
|
CSS::TextDecorationStyle text_decoration_style() const { return m_noninherited.text_decoration_style; }
|
|
CSS::TextDecorationStyle text_decoration_style() const { return m_noninherited.text_decoration_style; }
|
|
Color text_decoration_color() const { return m_noninherited.text_decoration_color; }
|
|
Color text_decoration_color() const { return m_noninherited.text_decoration_color; }
|
|
CSS::TextTransform text_transform() const { return m_inherited.text_transform; }
|
|
CSS::TextTransform text_transform() const { return m_inherited.text_transform; }
|
|
|
|
+ Vector<ShadowData> const& text_shadow() const { return m_noninherited.text_shadow; }
|
|
CSS::Position position() const { return m_noninherited.position; }
|
|
CSS::Position position() const { return m_noninherited.position; }
|
|
CSS::WhiteSpace white_space() const { return m_inherited.white_space; }
|
|
CSS::WhiteSpace white_space() const { return m_inherited.white_space; }
|
|
CSS::FlexDirection flex_direction() const { return m_noninherited.flex_direction; }
|
|
CSS::FlexDirection flex_direction() const { return m_noninherited.flex_direction; }
|
|
@@ -218,6 +219,7 @@ protected:
|
|
CSS::LengthPercentage text_decoration_thickness { InitialValues::text_decoration_thickness() };
|
|
CSS::LengthPercentage text_decoration_thickness { InitialValues::text_decoration_thickness() };
|
|
CSS::TextDecorationStyle text_decoration_style { InitialValues::text_decoration_style() };
|
|
CSS::TextDecorationStyle text_decoration_style { InitialValues::text_decoration_style() };
|
|
Color text_decoration_color { InitialValues::color() };
|
|
Color text_decoration_color { InitialValues::color() };
|
|
|
|
+ Vector<ShadowData> text_shadow {};
|
|
CSS::Position position { InitialValues::position() };
|
|
CSS::Position position { InitialValues::position() };
|
|
Optional<CSS::LengthPercentage> width;
|
|
Optional<CSS::LengthPercentage> width;
|
|
Optional<CSS::LengthPercentage> min_width;
|
|
Optional<CSS::LengthPercentage> min_width;
|
|
@@ -282,6 +284,7 @@ public:
|
|
void set_text_decoration_style(CSS::TextDecorationStyle value) { m_noninherited.text_decoration_style = value; }
|
|
void set_text_decoration_style(CSS::TextDecorationStyle value) { m_noninherited.text_decoration_style = value; }
|
|
void set_text_decoration_color(Color value) { m_noninherited.text_decoration_color = value; }
|
|
void set_text_decoration_color(Color value) { m_noninherited.text_decoration_color = value; }
|
|
void set_text_transform(CSS::TextTransform value) { m_inherited.text_transform = value; }
|
|
void set_text_transform(CSS::TextTransform value) { m_inherited.text_transform = value; }
|
|
|
|
+ void set_text_shadow(Vector<ShadowData>&& value) { m_noninherited.text_shadow = move(value); }
|
|
void set_position(CSS::Position position) { m_noninherited.position = position; }
|
|
void set_position(CSS::Position position) { m_noninherited.position = position; }
|
|
void set_white_space(CSS::WhiteSpace value) { m_inherited.white_space = value; }
|
|
void set_white_space(CSS::WhiteSpace value) { m_inherited.white_space = value; }
|
|
void set_width(CSS::LengthPercentage const& width) { m_noninherited.width = width; }
|
|
void set_width(CSS::LengthPercentage const& width) { m_noninherited.width = width; }
|