Backed out changeset 029128b70708 due to orange

This commit is contained in:
Jonas Sicking 2009-11-21 01:26:28 -08:00
parent e39467b652
commit b74d355393
2 changed files with 0 additions and 15 deletions

View File

@ -483,7 +483,6 @@ nsDOMFileReader::ReadFileContent(nsIDOMFile* aFile,
mDataFormat = aDataFormat;
mCharset = aCharset;
mError = nsnull;
SetDOMStringToNull(mResult);
//Obtain the nsDOMFile's underlying nsIFile
nsresult rv;

View File

@ -116,20 +116,6 @@ r.readAsText(createFileWithData(convertToUTF32(testTextData)), "UTF-32");
expectedTestCount++;
// Test reusing a FileReader to read multiple times
r = new FileReader();
r.onload = getLoadHandler(testASCIIData, "to-be-reused reading")
var makeAnotherReadListener = function(event) {
r = event.target;
r.removeEventListener("load", makeAnotherReadListener, false);
r.onload = getLoadHandler(testBinaryData, "reused reading");
r.readAsBinaryString(binaryFile);
};
r.addEventListener("load", makeAnotherReadListener, false);
r.readAsText(asciiFile, "");
expectedTestCount += 2;
//Test data-URI encoding on differing file sizes
dataurldata = testBinaryData.substr(0, testBinaryData.length -
testBinaryData.length % 3);