Added .value to the env impl.
This commit is contained in:
parent
89a9a747b6
commit
e155a6ae51
1 changed files with 3 additions and 0 deletions
|
@ -296,6 +296,9 @@ var window = this;
|
||||||
get type() { return this.getAttribute("type") || ""; },
|
get type() { return this.getAttribute("type") || ""; },
|
||||||
set type(val) { return this.setAttribute("type",val); },
|
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") || ""; },
|
get src() { return this.getAttribute("src") || ""; },
|
||||||
set src(val) { return this.setAttribute("src",val); },
|
set src(val) { return this.setAttribute("src",val); },
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue