diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-30 00:27:38 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-30 00:27:38 +0000 |
commit | c20ff5f8ca3711a30bc837407b62198048a91ebc (patch) | |
tree | b25b881e0c05007f6aebb1f570b41ee67331ca88 /webkit/tools/test_shell/test_shell.cc | |
parent | 040fddedb255adf86a41de8d83971b040186acb2 (diff) | |
download | chromium_src-c20ff5f8ca3711a30bc837407b62198048a91ebc.zip chromium_src-c20ff5f8ca3711a30bc837407b62198048a91ebc.tar.gz chromium_src-c20ff5f8ca3711a30bc837407b62198048a91ebc.tar.bz2 |
List individual storage related layout tests rather than excluding them all. Run all the dom storage tests that don't rely on events (which are still unsupported). Enable local storage and session storage in the test shell.
TEST=none
BUG=4360
Review URL: http://codereview.chromium.org/160355
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22029 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, 2 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc index 07add97..3f9fcde 100644 --- a/webkit/tools/test_shell/test_shell.cc +++ b/webkit/tools/test_shell/test_shell.cc @@ -418,6 +418,8 @@ void TestShell::ResetWebPreferences() { // It's off by default for Chrome, but we don't want to // lose the coverage of dynamic font tests in webkit test. web_prefs_->remote_fonts_enabled = true; + web_prefs_->local_storage_enabled = true; + web_prefs_->session_storage_enabled = true; } } |