зеркало из https://github.com/mozilla/pjs.git
Bug 431141: input type="password" should not have "Add Keyword to this Search" context menu, r=gavin
This commit is contained in:
Родитель
364566a127
Коммит
5cf29fadf5
|
@ -1227,8 +1227,11 @@ nsContextMenu.prototype = {
|
|||
},
|
||||
|
||||
isTargetAKeywordField: function(aNode) {
|
||||
if (!(aNode instanceof HTMLInputElement))
|
||||
return false;
|
||||
|
||||
var form = aNode.form;
|
||||
if (!form)
|
||||
if (!form || aNode.type == "password")
|
||||
return false;
|
||||
|
||||
var method = form.method.toUpperCase();
|
||||
|
|
Загрузка…
Ссылка в новой задаче