зеркало из https://github.com/mozilla/gecko-dev.git
Bug 669409 - Fix unsafe QI @ content.js::receiveMessage; r=mbrubeck
This commit is contained in:
Родитель
69034b53fc
Коммит
8ec88800f3
|
@ -400,7 +400,7 @@ let Content = {
|
|||
switch (aMessage.name) {
|
||||
case "Browser:ContextCommand": {
|
||||
let wrappedTarget = elementFromPoint(x, y);
|
||||
if (!wrappedTarget)
|
||||
if (!wrappedTarget || !(wrappedTarget instanceof Ci.nsIDOMNSEditableElement))
|
||||
break;
|
||||
let target = wrappedTarget.QueryInterface(Ci.nsIDOMNSEditableElement);
|
||||
if (!target)
|
||||
|
|
Загрузка…
Ссылка в новой задаче