5 litehtml::el_anchor::el_anchor(const std::shared_ptr
<litehtml::document
>& doc
) : html_tag(doc
)
9 void litehtml::el_anchor::on_click()
11 const char* href
= get_attr("href");
15 get_document()->container()->on_anchor_click(href
, shared_from_this());
19 void litehtml::el_anchor::apply_stylesheet( const litehtml::css
& stylesheet
)
21 if( get_attr("href") )
23 m_pseudo_classes
.push_back(_link_
);
25 html_tag::apply_stylesheet(stylesheet
);