summaryrefslogtreecommitdiffstats
path: root/chrome/worker
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-12 23:24:50 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-12 23:24:50 +0000
commita6c49b5d15b0e96163473982e88bcac08c535ef1 (patch)
tree9edff7754e55acba3819909acb4d77f915932b20 /chrome/worker
parent634ab7f997c79bb8fd7fda9ea0295a296e30d0a5 (diff)
downloadchromium_src-a6c49b5d15b0e96163473982e88bcac08c535ef1.zip
chromium_src-a6c49b5d15b0e96163473982e88bcac08c535ef1.tar.gz
chromium_src-a6c49b5d15b0e96163473982e88bcac08c535ef1.tar.bz2
TBR=dglazkov
- Roll WebKit to r49473 - Re-enable failing ui_tests due to last roll - Remove some failing layout tests expectations Review URL: http://codereview.chromium.org/267060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28755 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r--chrome/worker/worker_uitest.cc16
1 files changed, 6 insertions, 10 deletions
diff --git a/chrome/worker/worker_uitest.cc b/chrome/worker/worker_uitest.cc
index 21e6a05..51a8019 100644
--- a/chrome/worker/worker_uitest.cc
+++ b/chrome/worker/worker_uitest.cc
@@ -34,13 +34,11 @@ class WorkerTest : public UILayoutTest {
}
};
-// This test fails after WebKit merge 49414:49432. (BUG=24652)
-TEST_F(WorkerTest, DISABLED_SingleWorker) {
+TEST_F(WorkerTest, SingleWorker) {
RunTest(L"single_worker.html");
}
-// This test fails after WebKit merge 49414:49432. (BUG=24652)
-TEST_F(WorkerTest, DISABLED_MultipleWorkers) {
+TEST_F(WorkerTest, MultipleWorkers) {
RunTest(L"multi_worker.html");
}
@@ -49,8 +47,7 @@ TEST_F(WorkerTest, DISABLED_MultipleWorkers) {
#define WorkerFastLayoutTests DISABLED_WorkerFastLayoutTests
#endif
-// This test fails after WebKit merge 49414:49432. (BUG=24652)
-TEST_F(WorkerTest, DISABLED_WorkerFastLayoutTests) {
+TEST_F(WorkerTest, WorkerFastLayoutTests) {
static const char* kLayoutTestFiles[] = {
"stress-js-execution.html",
#if defined(OS_WIN)
@@ -131,8 +128,7 @@ TEST_F(WorkerTest, WorkerHttpLayoutTests) {
StopHttpServer();
}
-// This test fails after WebKit merge 49414:49432. (BUG=24652)
-TEST_F(WorkerTest, DISABLED_WorkerXhrHttpLayoutTests) {
+TEST_F(WorkerTest, WorkerXhrHttpLayoutTests) {
static const char* kLayoutTestFiles[] = {
"abort-exception-assert.html",
#if defined(OS_WIN)
@@ -203,7 +199,7 @@ TEST_F(WorkerTest, MessagePorts) {
// http://code.google.com/p/chromium/issues/detail?id=22608
#if !defined(OS_LINUX)
// This test fails after WebKit merge 49414:49432. (BUG=24652)
-TEST_F(WorkerTest, DISABLED_LimitPerPage) {
+TEST_F(WorkerTest, LimitPerPage) {
int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate;
GURL url = GetTestUrl(L"workers", L"many_workers.html");
url = GURL(url.spec() + StringPrintf("?count=%d", max_workers_per_tab + 1));
@@ -218,7 +214,7 @@ TEST_F(WorkerTest, DISABLED_LimitPerPage) {
#endif
// This test fails after WebKit merge 49414:49432. (BUG=24652)
-TEST_F(WorkerTest, DISABLED_LimitTotal) {
+TEST_F(WorkerTest, LimitTotal) {
int max_workers_per_tab = WorkerService::kMaxWorkersPerTabWhenSeparate;
int total_workers = WorkerService::kMaxWorkersWhenSeparate;