Home | History | Annotate | Download | only in spinning-balls

Lines Matching defs:Form

8 //     * Redistributions in binary form must reproduce the above
428 function Form() {
432 this.form = create("form");
433 this.form.setAttribute("action", "javascript:start()");
464 this.form.appendChild(table);
465 this.form.appendChild(button);
467 document.body.appendChild(this.form);
471 Form.prototype.remove = function () {
472 document.body.removeChild(this.form);
491 benchmarkTimeLimit = form.timelimit.value * 1000;
492 autoScale = form.autoscale.checked;
493 form.remove();
498 var form = new Form();