git-svn-id: svn://10.0.0.236/trunk@77695 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
andreww%netscape.com
2000-08-31 00:40:46 +00:00
parent 30fb78ccd7
commit 818bf8b528

View File

@@ -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);"