mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 968550 - onerror is undefined in processICCIOError. r=yoshi
This commit is contained in:
parent
c2e7beb833
commit
2b5b58e7f9
@ -11817,7 +11817,9 @@ ICCIOHelperObject.prototype = {
|
||||
}
|
||||
this.context.debug(errorMsg);
|
||||
}
|
||||
onerror(requestError);
|
||||
if (options.onerror) {
|
||||
options.onerror(requestError);
|
||||
}
|
||||
},
|
||||
};
|
||||
ICCIOHelperObject.prototype[ICC_COMMAND_SEEK] = null;
|
||||
@ -12205,7 +12207,7 @@ ICCRecordHelperObject.prototype = {
|
||||
callback: onsuccess,
|
||||
onerror: onerror
|
||||
});
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
* Cache EF_ANR record size.
|
||||
|
Loading…
Reference in New Issue
Block a user