Bug 301466 : Unable to copy text with adjacent HTML, r+a=mconnor

This commit is contained in:
gavin%gavinsharp.com 2005-07-20 18:48:05 +00:00
Родитель 4d66ea41e7
Коммит da2e1f0ad8
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -4644,7 +4644,9 @@ nsContextMenu.prototype = {
}
// The selection object may also report an empty text node if there is no selection.
var node = rangeFragment.childNodes[0];
if (node.nodeType == node.TEXT_NODE && node.nodeValue.length == 0) {
if (rangeFragment.childNodes.length == 1 &&
node.nodeType == node.TEXT_NODE &&
node.nodeValue.length == 0) {
return false;
}
return true;