Bug 570205 - IsTargetEditable could use isContentEditable. r=Neil
This commit is contained in:
Родитель
7298d8ec24
Коммит
4e659d1f44
|
@ -1227,14 +1227,7 @@ nsContextMenu.prototype = {
|
|||
|
||||
for (var node = this.target; node; node = node.parentNode)
|
||||
if (node instanceof Components.interfaces.nsIDOMNSHTMLElement)
|
||||
switch (node.contentEditable) {
|
||||
case "true":
|
||||
return true;
|
||||
case "false":
|
||||
return false;
|
||||
// case "inherit": continue;
|
||||
}
|
||||
|
||||
return node.isContentEditable;
|
||||
return false;
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче