Bug 693099 - "Save Snapshot As" option on HTML5 videos creates PNG files with .JPG file extension. r=sparky

This commit is contained in:
Justin Dolske 2011-10-11 00:14:27 -07:00
Родитель 0e5f5831f8
Коммит 6295003daf
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -854,7 +854,7 @@ nsContextMenu.prototype = {
canvas.height = video.videoHeight;
var ctxDraw = canvas.getContext("2d");
ctxDraw.drawImage(video, 0, 0);
saveImageURL(canvas.toDataURL("image/jpg", ""), name, "SaveImageTitle", true, false, document.documentURIObject);
saveImageURL(canvas.toDataURL("image/jpeg", ""), name, "SaveImageTitle", true, false, document.documentURIObject);
},
fullScreenVideo: function () {