Bug 1190209 - tabbox.xml should still set the visuallyselected attribute. r=mconley

CLOSED TREE
This commit is contained in:
Dão Gottwald 2015-08-02 12:50:00 -04:00
Родитель a121f2892c
Коммит 890907ce57
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -729,10 +729,13 @@
<property name="_selected">
<setter><![CDATA[
if (val)
if (val) {
this.setAttribute("selected", "true");
else
this.setAttribute("visuallyselected", "true");
} else {
this.removeAttribute("selected");
this.removeAttribute("visuallyselected");
}
this._setPositionAttributes(val);