Bug 1210381 - Remove view-source: when copying links. r=mconley

--HG--
extra : transplant_source : %8Df%9Es%8B%EC%5B%DC%17%D0%3F%3A7%AB%26.%C0wGz
This commit is contained in:
J. Ryan Stinnett 2015-10-01 17:21:29 -05:00
Родитель 8ee9792b23
Коммит 00ecc8cd66
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1471,9 +1471,11 @@ nsContextMenu.prototype = {
},
copyLink: function() {
// If we're in a view source tab, remove the view-source: prefix
let linkURL = this.linkURL.replace(/^view-source:/, "");
var clipboard = Cc["@mozilla.org/widget/clipboardhelper;1"].
getService(Ci.nsIClipboardHelper);
clipboard.copyString(this.linkURL);
clipboard.copyString(linkURL);
},
///////////////

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

@ -31,8 +31,6 @@ add_task(function *() {
contextMenu = document.getElementById("contentAreaContextMenu");
// Prepend view-source to this one as it opens in a tab.
expectedData[0][3] = "view-source:" + expectedData[0][3];
for (let test of expectedData) {
yield* checkMenuItems(contextMenu, true, test[0], test[1], test[2], test[3]);
}