Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / filesystem / resources / op-read-directory.js
blobbef2a4871604a546247fc6dfb6bc4d4cdb2e4979
1 var testCases = [
3 name: 'ReadDirectory',
4 precondition: [
5 {fullPath:'/a', isDirectory:true},
6 {fullPath:'/b', isDirectory:true},
7 {fullPath:'/c', },
8 {fullPath:'/d', },
9 {fullPath:'/e', isDirectory:true},
10 {fullPath:'/f', },
11 {fullPath:'/g', isDirectory:true},
12 {fullPath:'/a/b'},
13 {fullPath:'/a/c'},
15 tests: [
16 function(helper) { helper.readDirectory('/'); },
17 function(helper) { helper.remove('/c'); },
18 function(helper) { helper.remove('/e'); },
19 function(helper) { helper.remove('/f'); },
20 function(helper) { helper.readDirectory('/'); }