Bug 869322 - Remove stray parens causing Google Talkback being unable to read text in input boxes. r=eitan

This commit is contained in:
Chen Dai 2013-05-08 21:54:05 -04:00
parent be89950349
commit 5d1e95c449

View File

@ -189,7 +189,7 @@ this.EventManager = {
if (aEvent.isFromUserInput) {
// XXX support live regions as well.
let event = aEvent.QueryInterface(Ci.nsIAccessibleTextChangeEvent);
let isInserted = event.isInserted();
let isInserted = event.isInserted;
let txtIface = aEvent.accessible.QueryInterface(Ci.nsIAccessibleText);
let text = '';