Merge pull request #892 from brendandahl/chrome-2

More fixes for chrome.
This commit is contained in:
Myk Melez 2015-01-20 14:19:00 -08:00
Родитель 57db587133 3a20037f35
Коммит a85fd2f7bc
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -188,12 +188,10 @@ var currentlyFocusedTextEditor;
setImageData(imageData, img.naturalWidth, img.naturalHeight, context);
URL.revokeObjectURL(img.src);
img.src = '';
resolve();
}
img.onerror = function(e) {
URL.revokeObjectURL(img.src);
img.src = '';
ctx.setAsCurrentContext();
reject($.newIllegalArgumentException("error decoding image"));
}

Просмотреть файл

@ -72,6 +72,11 @@ var fakeContacts = [
},],
},];
// Polyfill to enable testing in chrome.
if (typeof mozContact === "undefined") {
function mozContact() {}
}
// Turn the contact object into a mozContact to make the testing
// environment more similar to reality.
function toMozContact(fakeContact) {