diff options
author | dpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-19 03:05:55 +0000 |
---|---|---|
committer | dpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-19 03:05:55 +0000 |
commit | c391387ed7ccbd6e252d9d2f4c834c880722f4ac (patch) | |
tree | f4bc41b27f70f3515b2629ecf2c1b022e3323f20 /webkit/tools/test_shell/test_shell.cc | |
parent | 54d6d1e8558294da523990b9548a50a3087c12ed (diff) | |
download | chromium_src-c391387ed7ccbd6e252d9d2f4c834c880722f4ac.zip chromium_src-c391387ed7ccbd6e252d9d2f4c834c880722f4ac.tar.gz chromium_src-c391387ed7ccbd6e252d9d2f4c834c880722f4ac.tar.bz2 |
Fix bug 27217 - disable Java in test_shell by default, to match
DumpRenderTree's behavior. This causes a couple other tests to produce
output that could be construed as "failing" (in the way that upstream fails
as well). I will file a separate bug in webkit to figure out what to do
about them.
R=eseidel@chromium.org
BUG=27217
TEST=LayoutTests/fast/replaced/applet-rendering-java-disabled.html
Review URL: http://codereview.chromium.org/405026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_shell.cc')
-rw-r--r-- | webkit/tools/test_shell/test_shell.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc index d6052ae..30f34a6 100644 --- a/webkit/tools/test_shell/test_shell.cc +++ b/webkit/tools/test_shell/test_shell.cc @@ -434,7 +434,7 @@ void TestShell::ResetWebPreferences() { web_prefs_->shrinks_standalone_images_to_fit = false; web_prefs_->uses_universal_detector = false; web_prefs_->text_areas_are_resizable = false; - web_prefs_->java_enabled = true; + web_prefs_->java_enabled = false; web_prefs_->allow_scripts_to_close_windows = false; web_prefs_->xss_auditor_enabled = false; // It's off by default for Chrome, but we don't want to |