Skip to content

Commit

Permalink
Added .value to the env impl.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Jul 8, 2007
1 parent 89a9a74 commit e155a6a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/runtest/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -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); },

Expand Down

0 comments on commit e155a6a

Please sign in to comment.