ref: a4ab5e6fa6ac1ad7937a46213288b476879cebd4
parent: e33f85d011042328fa500b792b5786d2e11991b3
author: stanley lieber <stanley.lieber@gmail.com>
date: Sun Oct 2 16:57:32 EDT 2011
mothra: add <input type="search">, fixes wikipedia form submission
--- a/sys/src/cmd/mothra/forms.c
+++ b/sys/src/cmd/mothra/forms.c
@@ -169,6 +169,8 @@
f->name=strdup("no-name");}
}
+ else if(cistrcmp(s, "search")==0)
+ f->type=TYPEIN;
else if(cistrcmp(s, "checkbox")==0)
f->type=CHECK;
else if(cistrcmp(s, "radio")==0)
--
⑨