summaryrefslogtreecommitdiffstats
path: root/application/palemoon/base/content/nsContextMenu.js
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-08-17 16:04:48 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-08-17 16:04:48 +0300
commit7dd67ceb0ac117932c05a6c37cc1e64766c3b877 (patch)
treee57e145aff90d0c50f59ee71ea04fc60158c02fd /application/palemoon/base/content/nsContextMenu.js
parent26debee73392b4d138663204b343c8ca805e6b3f (diff)
downloadUXP-7dd67ceb0ac117932c05a6c37cc1e64766c3b877.tar
UXP-7dd67ceb0ac117932c05a6c37cc1e64766c3b877.tar.gz
UXP-7dd67ceb0ac117932c05a6c37cc1e64766c3b877.tar.lz
UXP-7dd67ceb0ac117932c05a6c37cc1e64766c3b877.tar.xz
UXP-7dd67ceb0ac117932c05a6c37cc1e64766c3b877.zip
[PALEMOON] Align viewPartialSource with the UXP codebase
Diffstat (limited to 'application/palemoon/base/content/nsContextMenu.js')
-rw-r--r--application/palemoon/base/content/nsContextMenu.js26
1 files changed, 2 insertions, 24 deletions
diff --git a/application/palemoon/base/content/nsContextMenu.js b/application/palemoon/base/content/nsContextMenu.js
index 19b2fac77..1d4f88816 100644
--- a/application/palemoon/base/content/nsContextMenu.js
+++ b/application/palemoon/base/content/nsContextMenu.js
@@ -838,30 +838,8 @@ nsContextMenu.prototype = {
// View Partial Source
viewPartialSource: function(aContext) {
- var focusedWindow = document.commandDispatcher.focusedWindow;
- if (focusedWindow == window)
- focusedWindow = content;
-
- var docCharset = null;
- if (focusedWindow)
- docCharset = "charset=" + focusedWindow.document.characterSet;
-
- // "View Selection Source" and others such as "View MathML Source"
- // are mutually exclusive, with the precedence given to the selection
- // when there is one
- var reference = null;
- if (aContext == "selection")
- reference = focusedWindow.getSelection();
- else if (aContext == "mathml")
- reference = this.target;
- else
- throw "not reached";
-
- // unused (and play nice for fragments generated via XSLT too)
- var docUrl = null;
- window.openDialog("chrome://global/content/viewPartialSource.xul",
- "_blank", "scrollbars,resizable,chrome,dialog=no",
- docUrl, docCharset, reference, aContext);
+ let target = aContext == "mathml" ? this.target : null;
+ top.gViewSourceUtils.viewPartialSourceInBrowser(gBrowser.selectedBrowser, target);
},
// Open new "view source" window with the frame's URL.