git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89a9a74
)
Added .value to the env impl.
author
John Resig
<jeresig@gmail.com>
Sun, 8 Jul 2007 07:02:36 +0000
(07:02 +0000)
committer
John Resig
<jeresig@gmail.com>
Sun, 8 Jul 2007 07:02:36 +0000
(07:02 +0000)
build/runtest/env.js
patch
|
blob
|
history
diff --git
a/build/runtest/env.js
b/build/runtest/env.js
index
0d3be38
..
30cd8f1
100644
(file)
--- 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); },