Remove useless label in gentest.html
authorAryeh Gregor <AryehGregor+gitcommit@gmail.com>
Thu, 22 Sep 2011 11:54:31 -0600
changeset 616 41bd940dbc7e
parent 615 b679aa3a13f0
child 617 89fed05c54e0
Remove useless label in gentest.html

The idea was I'd use it to track what I was doing when running multiple
sets of tests in parallel, but in practice it hasn't been an issue, so
it's just clutter.
conformancetest/gentest.html
conformancetest/submit.php
--- a/conformancetest/gentest.html	Thu Sep 22 10:30:14 2011 -0600
+++ b/conformancetest/gentest.html	Thu Sep 22 11:54:31 2011 -0600
@@ -13,7 +13,6 @@
 
 <form action=submit.php method=post>
 <p><input type=submit disabled>
-<p><label>Label: <input name=label></label>
 <p><label><input type=radio name=ua value=gecko> Gecko</label>
    <label><input type=radio name=ua value=webkit> WebKit</label>
 <!-- Username is ignored, it's just so browsers offer to remember the password.
--- a/conformancetest/submit.php	Thu Sep 22 10:30:14 2011 -0600
+++ b/conformancetest/submit.php	Thu Sep 22 11:54:31 2011 -0600
@@ -14,4 +14,4 @@
 	die('Write failed!');
 }
 
-echo 'Successfully wrote ' . $_POST['ua'] . '-data for ' . $_POST['label'];
+echo 'Successfully wrote ' . $_POST['ua'] . '-data';