fixing 37847: js error on keyverb selection

This commit is contained in:
ben%netscape.com 2000-05-02 04:10:05 +00:00
Родитель bbbcbd2f0e
Коммит dc53ed8772
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -385,6 +385,13 @@
onget="return this.anonymousContent[0].firstChild.size;"/>
<property name="readonly" onset="return this.anonymousContent[0].firstChild.readonly = val;"
onget="return this.anonymousContent[0].firstChild.readonly;"/>
<method name="setSelectionRange">
<argument name="aSelectionStart"/>
<argument name="aSelectionEnd"/>
<body>
this.anonymousContent[0].firstChild.setSelectionRange( aSelectionStart, aSelectionEnd );
</body>
</method>
</interface>
<handlers>
<handler type="focus" value="this.setAttribute('focused','true'); this.anonymousContent[0].firstChild.focus(); "/>