113602 - readonly fields no longer updated once a character is typed. r=bz sr=hewitt a=asa

git-svn-id: svn://10.0.0.236/trunk@115385 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blakeross%telocity.com 2002-02-27 00:34:59 +00:00
parent 34a29da01f
commit 984dbd651c

View File

@ -269,7 +269,7 @@ function CookieSelected() {
} else {
value = props[i].value;
}
field.setAttribute("value", value);
field.value = value;
}
return true;
}
@ -278,7 +278,7 @@ function ClearCookieProperties() {
var properties =
["ifl_name","ifl_value","ifl_host","ifl_path","ifl_isSecure","ifl_expires","ifl_policy"];
for (var prop=0; prop<properties.length; prop++) {
document.getElementById(properties[prop]).setAttribute("value","");
document.getElementById(properties[prop]).value = "";
}
}