Added .value to the env impl.

This commit is contained in:
John Resig 2007-07-08 07:02:36 +00:00
parent 89a9a747b6
commit e155a6ae51

View File

@ -296,6 +296,9 @@ var window = this;
get type() { return this.getAttribute("type") || ""; },
set type(val) { return this.setAttribute("type",val); },
get value() { return this.getAttribute("value") || ""; },
set value(val) { return this.setAttribute("value",val); },
get src() { return this.getAttribute("src") || ""; },
set src(val) { return this.setAttribute("src",val); },