summaryrefslogtreecommitdiffstats
path: root/chrome/browser/in_process_webkit
diff options
context:
space:
mode:
authorjohnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-22 18:46:33 +0000
committerjohnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-22 18:46:33 +0000
commite16fa1ee9ba1a4f8af71de72aa396809bfe69b84 (patch)
tree1d6275e78a34f3b317e4dfe5498ba143b0e0f0f7 /chrome/browser/in_process_webkit
parent73cae57f1b63a1979790881960ca7615cd779cd0 (diff)
downloadchromium_src-e16fa1ee9ba1a4f8af71de72aa396809bfe69b84.zip
chromium_src-e16fa1ee9ba1a4f8af71de72aa396809bfe69b84.tar.gz
chromium_src-e16fa1ee9ba1a4f8af71de72aa396809bfe69b84.tar.bz2
Webkit roll 49926:49941
BUG=none TEST=none TBR=tc,jorlow Review URL: http://codereview.chromium.org/314011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/in_process_webkit')
-rw-r--r--chrome/browser/in_process_webkit/dom_storage_uitest.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/chrome/browser/in_process_webkit/dom_storage_uitest.cc b/chrome/browser/in_process_webkit/dom_storage_uitest.cc
index 935cf43..1574697 100644
--- a/chrome/browser/in_process_webkit/dom_storage_uitest.cc
+++ b/chrome/browser/in_process_webkit/dom_storage_uitest.cc
@@ -8,13 +8,6 @@
#include "chrome/test/ui/ui_layout_test.h"
// TODO(jorlow): Enable all of these tests, eventually...
-/*
-static const char* kTopLevelFiles[] = {
- "window-attributes-exist.html",
- NULL
-};
-*/
-
static const char* kEventsFiles[] = {
//"complex-values.html",
//"iframe-events.html",
@@ -28,24 +21,30 @@ static const char* kEventsFiles[] = {
NULL
};
-static const char* kNoEventsFiles[] = {
+static const char* kTopLevelFiles[] = {
"clear.html",
+ "quota.html",
+ "remove-item.html",
+ //"window-attributes-exist.html",
+ NULL
+};
+
+static const char* kNoEventsFiles[] = {
//"complex-keys.html",
"delete-removal.html",
"enumerate-storage.html",
"enumerate-with-length-and-key.html",
- "remove-item.html",
"simple-usage.html",
NULL
};
static const char* kLocalStorageFiles[] = {
- "quota.html",
+ // "quota.html",
NULL
};
static const char* kSessionStorageFiles[] = {
- "no-quota.html",
+ // "no-quota.html",
NULL
};
@@ -105,7 +104,8 @@ class DOMStorageTest : public UILayoutTest {
TEST_F(DOMStorageTest, DOMStorageLayoutTests) {
InitializeForLayoutTest(test_dir_, FilePath(), false);
- //RunTests(kTopLevelFiles);
+ AddResources();
+ RunTests(kTopLevelFiles);
}
// http://code.google.com/p/chromium/issues/detail?id=24145