Bug 69664 - [FileSystem API] Directories can not contain more than 5000 entries
Summary: [FileSystem API] Directories can not contain more than 5000 entries
Status: UNCONFIRMED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-10-07 13:37 PDT by Mark Pilgrim (Google)
Modified: 2011-10-07 13:39 PDT (History)
1 user (show)

See Also:


Attachments
Patch (4.52 KB, patch)
2011-10-07 13:39 PDT, Mark Pilgrim (Google)
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Pilgrim (Google) 2011-10-07 13:37:37 PDT
According to http://dev.w3.org/2009/dap/file-system/pub/FileSystem/#directories , "Directories must not be made to contain more than 5000 entries." This test creates 5000 files in the root directory, verifies that all 5000 files were successfully created, then attempts to create another file and logs the result.

Expected behavior: throw FileError.INVALID_MODIFICATION_ERR
Actual behavior: no exception, 5001st file is created
Comment 1 Mark Pilgrim (Google) 2011-10-07 13:39:03 PDT
Created attachment 110208 [details]
Patch