Ladybird: Load about:blank when opening a new tab

Let's not show the unappealing about:newtab to new users by default.
If it becomes more useful/interesting in the future, we can reconsider.
This commit is contained in:
Andreas Kling
2024-06-18 21:45:50 +02:00
parent 8d7216f4e0
commit 722a669b22

View File

@@ -11,7 +11,7 @@
namespace Browser {
static constexpr StringView default_homepage_url = "resource://html/misc/welcome.html"sv;
static constexpr StringView default_new_tab_url = "about:newtab"sv;
static constexpr StringView default_new_tab_url = "about:blank"sv;
static constexpr StringView default_color_scheme = "auto"sv;
static constexpr bool default_enable_content_filters = true;
static constexpr bool default_show_bookmarks_bar = true;