Fix misleading comment from bug 803675, r=dolske

--HG--
extra : rebase_source : 443649d79172ba5e1304116aae22c74b898827c1
This commit is contained in:
Gavin Sharp 2013-06-06 10:35:27 -07:00
parent 274e56e33b
commit 92b36bda08

View File

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