From 92b36bda08c39582f3a84d107dae72f50663536a Mon Sep 17 00:00:00 2001 From: Gavin Sharp Date: Thu, 6 Jun 2013 10:35:27 -0700 Subject: [PATCH] Fix misleading comment from bug 803675, r=dolske --HG-- extra : rebase_source : 443649d79172ba5e1304116aae22c74b898827c1 --- browser/app/profile/firefox.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index fdd1996de25..c81e87ad368 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -393,7 +393,11 @@ pref("browser.link.open_newwindow.override.external", -1); // 2: don't divert window.open with features pref("browser.link.open_newwindow.restriction", 2); -// Disable opening a new window via window.open if browser is in fullscreen mode +// If true, this pref causes windows opened by window.open to be forced into new +// tabs (rather than potentially opening separate windows, depending on +// window.open arguments) when the browser is in fullscreen mode. +// We set this differently on Mac because the fullscreen implementation there is +// different. #ifdef XP_MACOSX pref("browser.link.open_newwindow.disabled_in_fullscreen", true); #else