summaryrefslogtreecommitdiff
path: root/libs/litehtml/src/el_base.cpp
blob: baf025653924f4abab1044ea7866391d5a4e1bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "html.h"
#include "el_base.h"
#include "document.h"

litehtml::el_base::el_base(const std::shared_ptr<document>& doc) : html_tag(doc)
{
	
}

void litehtml::el_base::parse_attributes()
{
	get_document()->container()->set_base_url(get_attr("href"));
}