summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/test_shell_main.cc
diff options
context:
space:
mode:
authorpatrick@chromium.org <patrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 21:43:30 +0000
committerpatrick@chromium.org <patrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 21:43:30 +0000
commit1de1aa61414b1769e5e3dcda683ed10ab96de06e (patch)
tree0fa830aba628387dbc2232042d06bba60909905e /webkit/tools/test_shell/test_shell_main.cc
parentcbbe217d6eab1301dde860aa6452aaf7b0e76dba (diff)
downloadchromium_src-1de1aa61414b1769e5e3dcda683ed10ab96de06e.zip
chromium_src-1de1aa61414b1769e5e3dcda683ed10ab96de06e.tar.gz
chromium_src-1de1aa61414b1769e5e3dcda683ed10ab96de06e.tar.bz2
Add a new switch: --allow-scripts-to-close-windows.
With this switch, window.close() will always be enabled. Currently the switch is only available in test_shell. Review URL: http://codereview.chromium.org/2915 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2333 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_shell_main.cc')
-rw-r--r--webkit/tools/test_shell/test_shell_main.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/test_shell_main.cc b/webkit/tools/test_shell/test_shell_main.cc
index 0383424..8f7ee3b 100644
--- a/webkit/tools/test_shell/test_shell_main.cc
+++ b/webkit/tools/test_shell/test_shell_main.cc
@@ -195,6 +195,9 @@ int main(int argc, char* argv[])
bool interactive = !layout_test_mode;
TestShell::InitializeTestShell(interactive);
+ if (parsed_command_line.HasSwitch(test_shell::kAllowScriptsToCloseWindows))
+ TestShell::SetAllowScriptsToCloseWindows();
+
// Disable user themes for layout tests so pixel tests are consistent.
if (!interactive)
gfx::NativeTheme::instance()->DisableTheming();