| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/file_path.h" | 5 #include "base/file_path.h" |
| 6 #include "base/string_util.h" | 6 #include "base/string_util.h" |
| 7 #include "base/test/test_timeouts.h" | 7 #include "base/test/test_timeouts.h" |
| 8 #include "base/threading/platform_thread.h" | 8 #include "base/threading/platform_thread.h" |
| 9 #include "chrome/app/chrome_command_ids.h" | 9 #include "chrome/app/chrome_command_ids.h" |
| 10 #include "chrome/test/automation/automation_proxy.h" | 10 #include "chrome/test/automation/automation_proxy.h" |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 310 |
| 311 TEST_F(WorkerTest, WorkerLocation) { | 311 TEST_F(WorkerTest, WorkerLocation) { |
| 312 RunWorkerFastLayoutTest("worker-location.html"); | 312 RunWorkerFastLayoutTest("worker-location.html"); |
| 313 } | 313 } |
| 314 | 314 |
| 315 // Flaky, http://crbug.com/71518. | 315 // Flaky, http://crbug.com/71518. |
| 316 TEST_F(WorkerTest, FLAKY_WorkerMapGc) { | 316 TEST_F(WorkerTest, FLAKY_WorkerMapGc) { |
| 317 RunWorkerFastLayoutTest("wrapper-map-gc.html"); | 317 RunWorkerFastLayoutTest("wrapper-map-gc.html"); |
| 318 } | 318 } |
| 319 | 319 |
| 320 // Broken, http://crbug.com/101665 | 320 TEST_F(WorkerTest, WorkerMessagePort) { |
| 321 TEST_F(WorkerTest, DISABLED_WorkerMessagePort) { | |
| 322 RunWorkerFastLayoutTest("worker-messageport.html"); | 321 RunWorkerFastLayoutTest("worker-messageport.html"); |
| 323 } | 322 } |
| 324 | 323 |
| 325 // Broken, http://crbug.com/101665 | 324 TEST_F(WorkerTest, WorkerMessagePortGC) { |
| 326 TEST_F(WorkerTest, DISABLED_WorkerMessagePortGC) { | |
| 327 RunWorkerFastLayoutTest("worker-messageport-gc.html"); | 325 RunWorkerFastLayoutTest("worker-messageport-gc.html"); |
| 328 } | 326 } |
| 329 | 327 |
| 330 TEST_F(WorkerTest, WorkerMultiPort) { | 328 TEST_F(WorkerTest, WorkerMultiPort) { |
| 331 RunWorkerFastLayoutTest("worker-multi-port.html"); | 329 RunWorkerFastLayoutTest("worker-multi-port.html"); |
| 332 } | 330 } |
| 333 | 331 |
| 334 // Flaky, http://crbug.com/76426. | 332 // Flaky, http://crbug.com/76426. |
| 335 TEST_F(WorkerTest, FLAKY_WorkerNavigator) { | 333 TEST_F(WorkerTest, FLAKY_WorkerNavigator) { |
| 336 RunWorkerFastLayoutTest("worker-navigator.html"); | 334 RunWorkerFastLayoutTest("worker-navigator.html"); |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 RunWorkerFileSystemLayoutTest("file-writer-truncate-extend.html"); | 839 RunWorkerFileSystemLayoutTest("file-writer-truncate-extend.html"); |
| 842 } | 840 } |
| 843 | 841 |
| 844 TEST_F(WorkerFileSystemTest, FileWriterSyncTruncateExtend) { | 842 TEST_F(WorkerFileSystemTest, FileWriterSyncTruncateExtend) { |
| 845 RunWorkerFileSystemLayoutTest("file-writer-sync-truncate-extend.html"); | 843 RunWorkerFileSystemLayoutTest("file-writer-sync-truncate-extend.html"); |
| 846 } | 844 } |
| 847 | 845 |
| 848 TEST_F(WorkerFileSystemTest, FileWriterSyncWriteOverlapped) { | 846 TEST_F(WorkerFileSystemTest, FileWriterSyncWriteOverlapped) { |
| 849 RunWorkerFileSystemLayoutTest("file-writer-sync-write-overlapped.html"); | 847 RunWorkerFileSystemLayoutTest("file-writer-sync-write-overlapped.html"); |
| 850 } | 848 } |
| OLD | NEW |