зеркало из https://github.com/mozilla/gecko-dev.git
Bug 976142 - Print vc change events more clearly. r=yzen
This commit is contained in:
Родитель
b9ac5d79e6
Коммит
e4f0f4b97c
|
@ -433,6 +433,15 @@ this.Logger = {
|
|||
str += ' (' + stateStrings.item(0) + ')';
|
||||
}
|
||||
|
||||
if (aEvent.eventType == Events.VIRTUALCURSOR_CHANGED) {
|
||||
let event = aEvent.QueryInterface(
|
||||
Ci.nsIAccessibleVirtualCursorChangeEvent);
|
||||
let pivot = aEvent.accessible.QueryInterface(
|
||||
Ci.nsIAccessibleDocument).virtualCursor;
|
||||
str += ' (' + this.accessibleToString(event.oldAccessible) + ' -> ' +
|
||||
this.accessibleToString(pivot.position) + ')';
|
||||
}
|
||||
|
||||
return str;
|
||||
},
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче