Disable stack execution on plugins
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_div.cpp
blob983d45ab2aabd4291507f519ff0939f9a932ea20
1 #include "html.h"
2 #include "el_div.h"
5 litehtml::el_div::el_div(const document::ptr& doc) : html_tag(doc)
10 void litehtml::el_div::parse_attributes()
12 const char* str = get_attr("align");
13 if(str)
15 m_style.add_property(_text_align_, str);
17 html_tag::parse_attributes();