mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +00:00
LibWeb+Browser: Remove old HTML parser :^)
The new parser is now used everywhere and it's working pretty well!
This commit is contained in:
parent
6c783dbf62
commit
6293d1a13c
9 changed files with 1 additions and 560 deletions
|
@ -59,7 +59,6 @@
|
|||
|
||||
namespace Browser {
|
||||
|
||||
extern bool g_use_old_html_parser;
|
||||
extern String g_home_url;
|
||||
|
||||
URL url_from_user_input(const String& input)
|
||||
|
@ -83,8 +82,6 @@ Tab::Tab()
|
|||
auto& toolbar = m_toolbar_container->add<GUI::ToolBar>();
|
||||
m_page_view = widget.add<Web::PageView>();
|
||||
|
||||
m_page_view->set_use_old_parser(g_use_old_html_parser);
|
||||
|
||||
m_go_back_action = GUI::CommonActions::make_go_back_action([this](auto&) {
|
||||
m_history.go_back();
|
||||
update_actions();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue