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 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 AddScript("gallery/slide_mode.js"); | 1310 AddScript("gallery/slide_mode.js"); |
1311 set_test_case_name("traverseSlideImagesOnDownloads"); | 1311 set_test_case_name("traverseSlideImagesOnDownloads"); |
1312 StartTest(); | 1312 StartTest(); |
1313 } | 1313 } |
1314 | 1314 |
1315 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, TraverseSlideImagesOnDrive) { | 1315 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, TraverseSlideImagesOnDrive) { |
1316 AddScript("gallery/slide_mode.js"); | 1316 AddScript("gallery/slide_mode.js"); |
1317 set_test_case_name("traverseSlideImagesOnDrive"); | 1317 set_test_case_name("traverseSlideImagesOnDrive"); |
1318 StartTest(); | 1318 StartTest(); |
1319 } | 1319 } |
| 1320 |
| 1321 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, RenameImageOnDownloads) { |
| 1322 AddScript("gallery/test_util.js"); |
| 1323 AddScript("gallery/slide_mode.js"); |
| 1324 set_test_case_name("renameImageOnDownloads"); |
| 1325 StartTest(); |
| 1326 } |
| 1327 |
| 1328 IN_PROC_BROWSER_TEST_F(GalleryBrowserTestInGuestMode, |
| 1329 RenameImageOnDownloads) { |
| 1330 AddScript("gallery/test_util.js"); |
| 1331 AddScript("gallery/slide_mode.js"); |
| 1332 set_test_case_name("renameImageOnDownloads"); |
| 1333 StartTest(); |
| 1334 } |
| 1335 |
| 1336 IN_PROC_BROWSER_TEST_F(GalleryBrowserTest, RenameImageOnDrive) { |
| 1337 AddScript("gallery/test_util.js"); |
| 1338 AddScript("gallery/slide_mode.js"); |
| 1339 set_test_case_name("renameImageOnDrive"); |
| 1340 StartTest(); |
| 1341 } |
| 1342 |
1320 } // namespace | 1343 } // namespace |
1321 } // namespace file_manager | 1344 } // namespace file_manager |
OLD | NEW |