From e155a6ae51fad3649e77ebc6f784e4fc6b957ad1 Mon Sep 17 00:00:00 2001 From: John Resig Date: Sun, 8 Jul 2007 07:02:36 +0000 Subject: [PATCH] Added .value to the env impl. --- build/runtest/env.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/runtest/env.js b/build/runtest/env.js index 0d3be38..30cd8f1 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); }, -- 1.7.10.4