| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/test/layout_browsertest.h" | 5 #include "content/test/layout_browsertest.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 class BlobLayoutTest : public InProcessBrowserLayoutTest { | 9 class BlobLayoutTest : public InProcessBrowserLayoutTest { |
| 10 public: | 10 public: |
| 11 BlobLayoutTest() : | 11 BlobLayoutTest() : |
| 12 InProcessBrowserLayoutTest( | 12 InProcessBrowserLayoutTest( |
| 13 FilePath(), | 13 base::FilePath(), |
| 14 FilePath(FILE_PATH_LITERAL("fast/files")).NormalizePathSeparators()) { | 14 base::FilePath(FILE_PATH_LITERAL("fast/files")). |
| 15 NormalizePathSeparators()) { |
| 15 } | 16 } |
| 16 }; | 17 }; |
| 17 | 18 |
| 18 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, SliceTests) { | 19 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, SliceTests) { |
| 19 RunLayoutTest("blob-slice-test.html"); | 20 RunLayoutTest("blob-slice-test.html"); |
| 20 } | 21 } |
| 21 | 22 |
| 22 // crbug.com/169240 for disabling on Windows, crbug.com/173079 for temporary | 23 // crbug.com/169240 for disabling on Windows, crbug.com/173079 for temporary |
| 23 // disabling everywhere. | 24 // disabling everywhere. |
| 24 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, DISABLED_ApplyBlobUrlToImg) { | 25 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, DISABLED_ApplyBlobUrlToImg) { |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, DISABLED_WorkersWorkerReadFileAsync) { | 164 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, DISABLED_WorkersWorkerReadFileAsync) { |
| 164 RunLayoutTest("workers/worker-read-file-async.html"); | 165 RunLayoutTest("workers/worker-read-file-async.html"); |
| 165 } | 166 } |
| 166 | 167 |
| 167 // crbug.com/170152 | 168 // crbug.com/170152 |
| 168 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, DISABLED_WorkersWorkerReadFileSync) { | 169 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, DISABLED_WorkersWorkerReadFileSync) { |
| 169 RunLayoutTest("workers/worker-read-file-sync.html"); | 170 RunLayoutTest("workers/worker-read-file-sync.html"); |
| 170 } | 171 } |
| 171 | 172 |
| 172 } // namespace content | 173 } // namespace content |
| OLD | NEW |