1 Throw various bad bytes at file reader.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
5 array = new Uint8Array([65, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 66]);
6 blob = new Blob([array]);
7 reader = new FileReader();
8 reader.readAsText(blob);
9 PASS fileString is 'A�����������B'
10 PASS successfullyParsed is true