This commit is contained in:
hyatt%netscape.com 2000-03-23 22:18:17 +00:00
Родитель 16fdea9f7b
Коммит b58af300fc
2 изменённых файлов: 10 добавлений и 1 удалений

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

@ -267,6 +267,6 @@ textfield {
behavior: url(resource:/chrome/xulBindings.xml#textfield);
}
textarea {
textfield[multiline="true"] {
behavior: url(resource:/chrome/xulBindings.xml#textarea);
}

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

@ -228,6 +228,11 @@
<html:input inherits="value,type,maxlength,disabled,size,readonly"/>
</xul:html>
</content>
<handlers>
<handler type="focus" value="dump('****focus!!!'); var v = this.anonymousContent[0]; v.firstChild.focus();"/>
<handler type="blur" value="var v = this.anonymousContent[0]; v.firstChild.blur();"/>
</handlers>
</binding>
<binding name="textarea" extends="xul:box">
@ -236,5 +241,9 @@
<html:textarea inherits="value,disabled,rows,cols,readonly"/>
</xul:html>
</content>
<handlers>
<handler type="focus" value="dump('****focus!!!'); var v = this.anonymousContent[0]; v.firstChild.focus();"/>
<handler type="blur" value="var v = this.anonymousContent[0]; v.firstChild.blur();"/>
</handlers>
</binding>
</bindings>