Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 4e559a6

Browse files
committed
Fix #515 remove Directory upload
In hindsight Directory Upload is probably too unstable to include. It has changed since including in the test and web developers are using WebkitDirectory so browsers have implemented that instead. It is probably better to include this again once/if it gets merged in File API or HTML.
1 parent 6857211 commit 4e559a6

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

scripts/9/data.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -762,12 +762,6 @@ var tests = [
762762
name: '<code>files</code> property',
763763
value: 1,
764764
url: 'http://www.w3.org/TR/html5/forms.html#dom-input-files'
765-
}, {
766-
id: 'directory',
767-
status: 'experimental',
768-
name: 'Directory upload support',
769-
value: 1,
770-
url: 'https://wicg.github.io/directory-upload/proposal.html'
771765
}
772766
]
773767
}, {

scripts/9/engine.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -859,11 +859,6 @@ Test9 = (function () {
859859
key: 'form.file.files',
860860
passed: element.files && element.files instanceof FileList
861861
});
862-
863-
results.addItem({
864-
key: 'form.file.directory',
865-
passed: 'directory' in element && window.Directory
866-
});
867862
},
868863

869864

0 commit comments

Comments
 (0)