diff options
author | John Resig <jeresig@gmail.com> | 2007-07-08 07:02:36 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-07-08 07:02:36 +0000 |
commit | e155a6ae51fad3649e77ebc6f784e4fc6b957ad1 (patch) | |
tree | 720ee101b99b0e90e19fa7932e350fe006551df5 | |
parent | 89a9a747b603ae21945aa0cbcdf13560d3e7cea1 (diff) | |
download | jquery-e155a6ae51fad3649e77ebc6f784e4fc6b957ad1.tar.gz jquery-e155a6ae51fad3649e77ebc6f784e4fc6b957ad1.zip |
Added .value to the env impl.
-rw-r--r-- | build/runtest/env.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/runtest/env.js b/build/runtest/env.js index 0d3be388c..30cd8f1b4 100644 --- a/build/runtest/env.js +++ b/build/runtest/env.js @@ -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); }, |