I ran the latest cordova-ios and mobile-spec on an iOS 6.0.0 iPhone 4S and got 10 failures: - 2 in File API - 5 in FileTransfer - 3 in Session Storage Local Storage Is anyone else seeing these?
I took a look at the first one: "File API read method should read file properly, File Object." It looks like the text returned from readAsText() is URL encoded, which the test case does not expect - it complains about "%20" not matching " ". I looked at CDVFile.m and on line 936 it calls "messageAsString stringByAddingPercentEscapesUsingEncoding". Are the contents returned from readAsText() really supposed to be URL encoded? The Cordova doc doesn't indicate that. -- Marcel Kinard