diff --git a/build/runtest/env.js b/build/runtest/env.js index 0d3be388..30cd8f1b 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); },