- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / file_system / open_multiple_with_suggested_name / test.js
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 chrome.test.runTests([
6   function openFile() {
7     chrome.fileSystem.chooseEntry(
8         {suggestedName: 'open_existing.txt', acceptsMultiple: true},
9         chrome.test.callbackPass(function(entries) {
10           chrome.test.assertEq(1, entries.length);
11           checkEntry(entries[0], 'open_existing.txt', false, false);
12         })
13     );
14   }
15 ]);