зеркало из https://github.com/mozilla/pjs.git
second part of fix for #52519 - unescape text/x-moz-url URLs when they are dropped into bookmarks and history
r=law@netscape.com a=ben@netscape.com
This commit is contained in:
Родитель
ebcf63a622
Коммит
d0351ddfe2
|
@ -95,8 +95,8 @@ var historyDNDObserver = {
|
|||
var flavourList = { };
|
||||
flavourList["text/unicode"] = { width: 2, data: uri };
|
||||
flavourList["text/html"] = { width: 2, data: htmlString };
|
||||
flavourList["text/x-moz-url"] = { width: 2, data: uri + " " + title };
|
||||
flavourList["text/x-moz-url"] = { width: 2, data: escape(uri) + " " + title };
|
||||
return flavourList;
|
||||
},
|
||||
|
||||
};
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче