LibWeb: Rename Web::HtmlView => Web::PageView

This widget doesn't just view HTML, it views a web page. :^)
This commit is contained in:
Andreas Kling 2020-05-28 18:21:22 +02:00
commit 42243d2e06
Notes: sideshowbarker 2024-07-19 06:01:45 +09:00
24 changed files with 133 additions and 133 deletions

View file

@ -56,7 +56,7 @@ ConsoleWidget::ConsoleWidget()
html_element->append_child(body_element);
m_output_container = body_element;
m_output_view = add<Web::HtmlView>();
m_output_view = add<Web::PageView>();
m_output_view->set_document(base_document);
m_input = add<GUI::TextBox>();