2020-12-08 23:41:45 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-12-08 23:41:45 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-12-08 23:34:55 +01:00
|
|
|
#include <LibGUI/Application.h>
|
2021-02-10 08:25:35 +01:00
|
|
|
#include <LibGUI/Window.h>
|
2022-04-30 10:46:33 +02:00
|
|
|
#include <LibWebView/OutOfProcessWebView.h>
|
2021-03-12 17:29:37 +01:00
|
|
|
#include <unistd.h>
|
2020-12-08 23:34:55 +01:00
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
|
{
|
|
|
|
|
auto app = GUI::Application::construct(argc, argv);
|
|
|
|
|
auto window = GUI::Window::construct();
|
|
|
|
|
window->set_title("DumpLayoutTree");
|
|
|
|
|
window->resize(800, 600);
|
|
|
|
|
window->show();
|
2022-04-30 10:46:33 +02:00
|
|
|
auto& web_view = window->set_main_widget<WebView::OutOfProcessWebView>();
|
2020-12-08 23:34:55 +01:00
|
|
|
web_view.load(URL::create_with_file_protocol(argv[1]));
|
|
|
|
|
web_view.on_load_finish = [&](auto&) {
|
2021-09-08 00:55:35 +02:00
|
|
|
auto dump = web_view.dump_layout_tree();
|
|
|
|
|
write(STDOUT_FILENO, dump.characters(), dump.length() + 1);
|
2020-12-08 23:34:55 +01:00
|
|
|
_exit(0);
|
|
|
|
|
};
|
|
|
|
|
return app->exec();
|
|
|
|
|
}
|