Fix presubmit errors introduced by r10002.

TBR=erik.corry@gmail.com
Review URL: http://codereview.chromium.org/8520031

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@10004 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
vegorov@chromium.org 2011-11-16 01:44:17 +00:00
parent e3ec8b20fc
commit 95ecaeb996

View File

@ -428,7 +428,7 @@ function render() {
function Form() {
function create(tag) { return document.createElement(tag); }
function text(value) { return document.createTextNode(value); }
this.form = create("form");
this.form.setAttribute("action", "javascript:start()");
@ -445,7 +445,7 @@ function Form() {
var tr = create("tr");
tr.appendChild(col(a));
tr.appendChild(col(b));
return tr;
return tr;
}
this.timelimit = create("input");