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/common/url_constants.h" | 10 #include "chrome/common/url_constants.h" |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 } | 304 } |
305 | 305 |
306 TEST_F(WorkerTest, WorkerMessagePortGC) { | 306 TEST_F(WorkerTest, WorkerMessagePortGC) { |
307 RunWorkerFastLayoutTest("worker-messageport-gc.html"); | 307 RunWorkerFastLayoutTest("worker-messageport-gc.html"); |
308 } | 308 } |
309 | 309 |
310 TEST_F(WorkerTest, WorkerMultiPort) { | 310 TEST_F(WorkerTest, WorkerMultiPort) { |
311 RunWorkerFastLayoutTest("worker-multi-port.html"); | 311 RunWorkerFastLayoutTest("worker-multi-port.html"); |
312 } | 312 } |
313 | 313 |
314 TEST_F(WorkerTest, WorkerNavigator) { | 314 // Flaky, http://crbug.com/76426. |
| 315 TEST_F(WorkerTest, FLAKY_WorkerNavigator) { |
315 RunWorkerFastLayoutTest("worker-navigator.html"); | 316 RunWorkerFastLayoutTest("worker-navigator.html"); |
316 } | 317 } |
317 | 318 |
318 TEST_F(WorkerTest, WorkerReplaceGlobalConstructor) { | 319 TEST_F(WorkerTest, WorkerReplaceGlobalConstructor) { |
319 RunWorkerFastLayoutTest("worker-replace-global-constructor.html"); | 320 RunWorkerFastLayoutTest("worker-replace-global-constructor.html"); |
320 } | 321 } |
321 | 322 |
322 TEST_F(WorkerTest, WorkerReplaceSelf) { | 323 TEST_F(WorkerTest, WorkerReplaceSelf) { |
323 RunWorkerFastLayoutTest("worker-replace-self.html"); | 324 RunWorkerFastLayoutTest("worker-replace-self.html"); |
324 } | 325 } |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 RunWorkerFileSystemLayoutTest("file-writer-truncate-extend.html"); | 764 RunWorkerFileSystemLayoutTest("file-writer-truncate-extend.html"); |
764 } | 765 } |
765 | 766 |
766 TEST_F(WorkerFileSystemTest, FileWriterSyncTruncateExtend) { | 767 TEST_F(WorkerFileSystemTest, FileWriterSyncTruncateExtend) { |
767 RunWorkerFileSystemLayoutTest("file-writer-sync-truncate-extend.html"); | 768 RunWorkerFileSystemLayoutTest("file-writer-sync-truncate-extend.html"); |
768 } | 769 } |
769 | 770 |
770 TEST_F(WorkerFileSystemTest, FileWriterSyncWriteOverlapped) { | 771 TEST_F(WorkerFileSystemTest, FileWriterSyncWriteOverlapped) { |
771 RunWorkerFileSystemLayoutTest("file-writer-sync-write-overlapped.html"); | 772 RunWorkerFileSystemLayoutTest("file-writer-sync-write-overlapped.html"); |
772 } | 773 } |
OLD | NEW |