Remove inclusion of sys/socket.h from nntp-thread.c
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_script.cpp
blob4b598a137efc5bd3e92ec82565d83a4091a56906
1 #include "html.h"
2 #include "el_script.h"
3 #include "document.h"
6 litehtml::el_script::el_script(const std::shared_ptr<document>& doc) : element(doc)
11 void litehtml::el_script::parse_attributes()
13 //TODO: pass script text to document container
16 bool litehtml::el_script::appendChild(const ptr &el)
18 el->get_text(m_text);
19 return true;
22 litehtml::string_id litehtml::el_script::tag() const
24 return _script_;
27 const char* litehtml::el_script::get_tagName() const
29 return "script";