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
parent fc8ff8bbcb
commit 3f09d1f5cc

View File

@ -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 () {