2019-06-15 20:20:55 +02:00
|
|
|
#include <LibCore/CFile.h>
|
2019-06-15 18:55:47 +02:00
|
|
|
#include <LibHTML/Dump.h>
|
2019-06-16 21:35:03 +02:00
|
|
|
#include <LibHTML/Frame.h>
|
2019-06-21 20:54:13 +02:00
|
|
|
#include <LibHTML/Parser/CSSParser.h>
|
2019-06-27 17:47:59 +02:00
|
|
|
#include <LibHTML/CSS/StyleResolver.h>
|
2019-06-21 20:54:13 +02:00
|
|
|
#include <LibHTML/Parser/HTMLParser.h>
|
2019-06-15 20:20:55 +02:00
|
|
|
#include <stdio.h>
|
2019-06-15 18:55:47 +02:00
|
|
|
|
2019-06-15 20:20:55 +02:00
|
|
|
int main(int argc, char** argv)
|
2019-06-15 18:55:47 +02:00
|
|
|
{
|
2019-06-15 20:20:55 +02:00
|
|
|
CFile f(argc == 1 ? "/home/anon/small.html" : argv[1]);
|
|
|
|
if (!f.open(CIODevice::ReadOnly)) {
|
|
|
|
fprintf(stderr, "Error: %s\n", f.error_string());
|
|
|
|
return 1;
|
|
|
|
}
|
2019-06-21 20:54:13 +02:00
|
|
|
|
|
|
|
extern const char default_stylesheet_source[];
|
|
|
|
String css = default_stylesheet_source;
|
|
|
|
|
|
|
|
auto sheet = parse_css(css);
|
|
|
|
dump_sheet(sheet);
|
|
|
|
|
2019-06-15 20:20:55 +02:00
|
|
|
String html = String::copy(f.read_all());
|
2019-06-21 20:54:13 +02:00
|
|
|
auto doc = parse_html(html);
|
2019-06-15 18:55:47 +02:00
|
|
|
dump_tree(doc);
|
2019-06-15 22:49:44 +02:00
|
|
|
|
2019-06-27 17:47:59 +02:00
|
|
|
StyleResolver resolver(*doc);
|
|
|
|
resolver.add_sheet(*sheet);
|
|
|
|
|
|
|
|
auto doc_style = resolver.resolve_document_style(*doc);
|
|
|
|
|
2019-06-15 22:49:44 +02:00
|
|
|
doc->build_layout_tree();
|
|
|
|
ASSERT(doc->layout_node());
|
2019-06-20 23:00:26 +02:00
|
|
|
|
|
|
|
printf("\033[33;1mLayout tree before layout:\033[0m\n");
|
2019-06-16 21:35:03 +02:00
|
|
|
dump_tree(*doc->layout_node());
|
|
|
|
|
|
|
|
auto frame = make<Frame>();
|
|
|
|
frame->set_document(doc);
|
|
|
|
frame->layout();
|
|
|
|
|
2019-06-20 23:00:26 +02:00
|
|
|
printf("\033[33;1mLayout tree after layout:\033[0m\n");
|
2019-06-15 22:49:44 +02:00
|
|
|
dump_tree(*doc->layout_node());
|
2019-06-15 20:20:55 +02:00
|
|
|
return 0;
|
2019-06-15 18:55:47 +02:00
|
|
|
}
|