[Webkit-unassigned] [Bug 60583] DOMFileSystemBase should not impose file naming restrictions on 'external' filesystems

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 10 22:34:09 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=60583





--- Comment #5 from Kinuko Yasuda <kinuko at chromium.org>  2011-05-10 22:34:09 PST ---
(From update of attachment 93012)
View in context: https://bugs.webkit.org/attachment.cgi?id=93012&action=review

> Source/WebCore/fileapi/DOMFileSystemBase.cpp:148
> +    if (type != AsyncFileSystem::External && !DOMFilePath::isValidPath(absolutePath))

if ((type == Temporary || type == Persistent) && !DOMFilePath::isValidPath())

might be better?  This is for basic checks that are explicitly noted in the spec (draft), therefore performing the checks for FS types that are spec'ed out would make more sense.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list