Bug 416013 - switching the text input direction should not affect emptytext. r=ehsan,gavin

This commit is contained in:
Dão Gottwald 2009-01-13 02:28:32 +01:00
Родитель 977938f51e
Коммит 9a764eeb13
2 изменённых файлов: 16 добавлений и 0 удалений

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

@ -205,6 +205,10 @@
this.boxObject.removeProperty("value");
}
// Bindings that extend this one wouldn't inherit the
// chromedir attribute if it would only be set in <content>.
this.setAttribute("chromedir", "]]>&locale.dir;<![CDATA[");
this._updateVisibleText();
this._setNewlineHandling();
]]></constructor>

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

@ -658,6 +658,18 @@ html|*.textbox-textarea {
text-shadow: inherit;
}
textbox[empty="true"] html|*.textbox-input ,
textbox[empty="true"] html|*.textbox-textarea {
text-align: left;
direction: ltr;
}
textbox[empty="true"][chromedir="rtl"] html|*.textbox-input ,
textbox[empty="true"][chromedir="rtl"] html|*.textbox-textarea {
text-align: right;
direction: rtl;
}
textbox[empty="true"] html|*.textbox-input[emptytextdelay="true"] ,
textbox[empty="true"] html|*.textbox-textarea[emptytextdelay="true"] {
color: transparent !important;