mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 386744: "View Image" on <canvas> throws "Error: uncaught exception: Load of denied." r=mano
This commit is contained in:
parent
74aba047ce
commit
db93eccb6c
@ -693,11 +693,19 @@ nsContextMenu.prototype = {
|
||||
|
||||
// Change current window to the URL of the image.
|
||||
viewImage: function(e) {
|
||||
urlSecurityCheck(this.imageURL,
|
||||
this.browser.contentPrincipal,
|
||||
Ci.nsIScriptSecurityManager.DISALLOW_SCRIPT);
|
||||
var viewURL;
|
||||
|
||||
if (this.onCanvas)
|
||||
viewURL = this.target.toDataURL();
|
||||
else {
|
||||
viewURL = this.imageURL;
|
||||
urlSecurityCheck(viewURL,
|
||||
this.browser.contentPrincipal,
|
||||
Ci.nsIScriptSecurityManager.DISALLOW_SCRIPT);
|
||||
}
|
||||
|
||||
var doc = this.target.ownerDocument;
|
||||
openUILink( this.imageURL, e, null, null, null, null, doc.documentURIObject );
|
||||
openUILink(viewURL, e, null, null, null, null, doc.documentURIObject );
|
||||
},
|
||||
|
||||
// Change current window to the URL of the background image.
|
||||
|
Loading…
x
Reference in New Issue
Block a user