1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

Browser: Change "Same Origin" to "Same-Origin"

This commit is contained in:
Xexxa 2023-06-24 04:12:01 +02:00 committed by Andreas Kling
parent 84e7dd60ea
commit e3a0f84ffb

View file

@ -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);