2019-06-15 20:20:55 +02:00
|
|
|
#include <LibCore/CFile.h>
|
2019-06-27 17:47:59 +02:00
|
|
|
#include <LibHTML/CSS/StyleResolver.h>
|
2019-06-28 21:17:34 +02:00
|
|
|
#include <LibHTML/CSS/StyledNode.h>
|
2019-06-27 20:40:21 +02:00
|
|
|
#include <LibHTML/DOM/Element.h>
|
2019-06-29 21:42:07 +02:00
|
|
|
#include <LibHTML/Dump.h>
|
|
|
|
#include <LibHTML/Frame.h>
|
|
|
|
#include <LibHTML/Layout/LayoutBlock.h>
|
|
|
|
#include <LibHTML/Layout/LayoutInline.h>
|
|
|
|
#include <LibHTML/Parser/CSSParser.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-29 21:42:07 +02:00
|
|
|
auto document = parse_html(html);
|
|
|
|
dump_tree(document);
|
|
|
|
document->add_sheet(*sheet);
|
2019-06-16 21:35:03 +02:00
|
|
|
|
|
|
|
auto frame = make<Frame>();
|
2019-06-29 21:42:07 +02:00
|
|
|
frame->set_document(document);
|
2019-06-16 21:35:03 +02:00
|
|
|
frame->layout();
|
2019-06-15 20:20:55 +02:00
|
|
|
return 0;
|
2019-06-15 18:55:47 +02:00
|
|
|
}
|