From e3a0f84ffb390424349984dda4dc8f49889ccf5a Mon Sep 17 00:00:00 2001 From: Xexxa <93391300+Xexxa@users.noreply.github.com> Date: Sat, 24 Jun 2023 04:12:01 +0200 Subject: [PATCH] Browser: Change "Same Origin" to "Same-Origin" --- Userland/Applications/Browser/BrowserWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index f1733d70f9..778557f445 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -454,7 +454,7 @@ void BrowserWindow::build_menus() debug_menu.add_action(block_pop_ups_action); auto same_origin_policy_action = GUI::Action::create_checkable( - "Enable Same Origin &Policy", [this](auto& action) { + "Enable Same-Origin &Policy", [this](auto& action) { active_tab().view().debug_request("same-origin-policy", action.is_checked() ? "on" : "off"); }, this);