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 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1349 set_test_case_name("deleteImageOnDownloads"); | 1349 set_test_case_name("deleteImageOnDownloads"); |
1350 StartTest(); | 1350 StartTest(); |
1351 } | 1351 } |
1352 | 1352 |
1353 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, DeleteImageOnDrive) { | 1353 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, DeleteImageOnDrive) { |
1354 AddScript("gallery/slide_mode.js"); | 1354 AddScript("gallery/slide_mode.js"); |
1355 set_test_case_name("deleteImageOnDrive"); | 1355 set_test_case_name("deleteImageOnDrive"); |
1356 StartTest(); | 1356 StartTest(); |
1357 } | 1357 } |
1358 | 1358 |
| 1359 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, RotateImageOnDownloads) { |
| 1360 AddScript("gallery/photo_editor.js"); |
| 1361 set_test_case_name("rotateImageOnDownloads"); |
| 1362 StartTest(); |
| 1363 } |
| 1364 |
| 1365 IN_PROC_BROWSER_TEST_F(GalleryBrowserTestInGuestMode, |
| 1366 RotateImageOnDownloads) { |
| 1367 AddScript("gallery/photo_editor.js"); |
| 1368 set_test_case_name("rotateImageOnDownloads"); |
| 1369 StartTest(); |
| 1370 } |
| 1371 |
| 1372 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, RotateImageOnDrive) { |
| 1373 AddScript("gallery/photo_editor.js"); |
| 1374 set_test_case_name("rotateImageOnDrive"); |
| 1375 StartTest(); |
| 1376 } |
| 1377 |
1359 } // namespace | 1378 } // namespace |
1360 } // namespace file_manager | 1379 } // namespace file_manager |
OLD | NEW |