5litehtml::el_space::el_space(
const tchar_t* text,
const std::shared_ptr<litehtml::document>& doc) : el_text(text, doc)
9litehtml::el_space::~el_space()
14bool litehtml::el_space::is_white_space()
const
16 white_space ws = get_white_space();
17 if( ws == white_space_normal ||
18 ws == white_space_nowrap ||
19 ws == white_space_pre_line )
26bool litehtml::el_space::is_break()
const
28 white_space ws = get_white_space();
29 if( ws == white_space_pre ||
30 ws == white_space_pre_line ||
31 ws == white_space_pre_wrap)
33 if(m_text == _t(
"\n"))