|
@@ -112,6 +112,7 @@ public:
|
|
CSS::TextAlign text_align() const { return m_inherited.text_align; }
|
|
CSS::TextAlign text_align() const { return m_inherited.text_align; }
|
|
CSS::TextDecorationLine text_decoration_line() const { return m_noninherited.text_decoration_line; }
|
|
CSS::TextDecorationLine text_decoration_line() const { return m_noninherited.text_decoration_line; }
|
|
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; }
|
|
CSS::TextTransform text_transform() const { return m_inherited.text_transform; }
|
|
CSS::TextTransform text_transform() const { return m_inherited.text_transform; }
|
|
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; }
|
|
@@ -198,6 +199,7 @@ protected:
|
|
Optional<int> z_index;
|
|
Optional<int> z_index;
|
|
CSS::TextDecorationLine text_decoration_line { InitialValues::text_decoration_line() };
|
|
CSS::TextDecorationLine text_decoration_line { InitialValues::text_decoration_line() };
|
|
CSS::TextDecorationStyle text_decoration_style { InitialValues::text_decoration_style() };
|
|
CSS::TextDecorationStyle text_decoration_style { InitialValues::text_decoration_style() };
|
|
|
|
+ Color text_decoration_color { InitialValues::color() };
|
|
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;
|
|
@@ -256,6 +258,7 @@ public:
|
|
void set_text_align(CSS::TextAlign text_align) { m_inherited.text_align = text_align; }
|
|
void set_text_align(CSS::TextAlign text_align) { m_inherited.text_align = text_align; }
|
|
void set_text_decoration_line(CSS::TextDecorationLine value) { m_noninherited.text_decoration_line = value; }
|
|
void set_text_decoration_line(CSS::TextDecorationLine value) { m_noninherited.text_decoration_line = value; }
|
|
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_transform(CSS::TextTransform value) { m_inherited.text_transform = value; }
|
|
void set_text_transform(CSS::TextTransform value) { m_inherited.text_transform = 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; }
|