OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 // Browser test for basic Chrome OS file manager functionality: | 5 // Browser test for basic Chrome OS file manager functionality: |
6 // - The file list is updated when a file is added externally to the Downloads | 6 // - The file list is updated when a file is added externally to the Downloads |
7 // folder. | 7 // folder. |
8 // - Selecting a file and copy-pasting it with the keyboard copies the file. | 8 // - Selecting a file and copy-pasting it with the keyboard copies the file. |
9 // - Selecting a file and pressing delete deletes it. | 9 // - Selecting a file and pressing delete deletes it. |
10 | 10 |
(...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1443 set_test_case_name("cropImageOnDownloads"); | 1443 set_test_case_name("cropImageOnDownloads"); |
1444 StartTest(); | 1444 StartTest(); |
1445 } | 1445 } |
1446 | 1446 |
1447 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, CropImageOnDrive) { | 1447 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, CropImageOnDrive) { |
1448 AddScript("gallery/photo_editor.js"); | 1448 AddScript("gallery/photo_editor.js"); |
1449 set_test_case_name("cropImageOnDrive"); | 1449 set_test_case_name("cropImageOnDrive"); |
1450 StartTest(); | 1450 StartTest(); |
1451 } | 1451 } |
1452 | 1452 |
| 1453 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, ExposureImageOnDownloads) { |
| 1454 AddScript("gallery/photo_editor.js"); |
| 1455 set_test_case_name("exposureImageOnDownloads"); |
| 1456 StartTest(); |
| 1457 } |
| 1458 |
| 1459 IN_PROC_BROWSER_TEST_F(GalleryBrowserTestInGuestMode, |
| 1460 ExposureImageOnDownloads) { |
| 1461 AddScript("gallery/photo_editor.js"); |
| 1462 set_test_case_name("exposureImageOnDownloads"); |
| 1463 StartTest(); |
| 1464 } |
| 1465 |
| 1466 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, ExposureImageOnDrive) { |
| 1467 AddScript("gallery/photo_editor.js"); |
| 1468 set_test_case_name("exposureImageOnDrive"); |
| 1469 StartTest(); |
| 1470 } |
| 1471 |
1453 } // namespace | 1472 } // namespace |
1454 } // namespace file_manager | 1473 } // namespace file_manager |
OLD | NEW |