This commit is contained in:
andreww%netscape.com 2000-08-31 00:40:46 +00:00
Родитель 13c48ba459
Коммит 30f6ee4c5a
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -117,8 +117,11 @@
onget="return this.getAttribute('value');"/>
<property name="crop" onset="return this.setAttribute('crop',val);"
onget="return this.getAttribute('crop');"/>
<property name="disabled" onset="return this.setAttribute('disabled',val);"
onget="return this.getAttribute('disabled');"/>
<property name="disabled" onset="if (val) this.setAttribute('disabled', 'true');
else this.removeAttribute('disabled');
return val;"
onget="var v = this.getAttribute('disabled');
if (v == 'true') return true; return false;"/>
<property name="src" onset="return this.setAttribute('src',val);"
onget="return this.getAttribute('src');"/>
<property name="accesskey" onset="return this.setAttribute('accesskey',val);"