Bug 976142 - Print vc change events more clearly. r=yzen

This commit is contained in:
Eitan Isaacson 2014-02-26 16:31:09 -05:00
Родитель b9ac5d79e6
Коммит e4f0f4b97c
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -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;
},