diff options
author | ville <ville@localhost> | 2002-12-06 21:30:27 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2002-12-06 21:30:27 +0000 |
commit | 48a9817412f45e8e95cac6b3c3dde516366e6611 (patch) | |
tree | 2cd47c1c88f0debf4b727c9b9fe5e5a694d796f9 /htdocs/fragment-upload.html | |
parent | a8c4e9be3f447bdb37c422af54fd4dcfde45a138 (diff) | |
download | markup-validator-48a9817412f45e8e95cac6b3c3dde516366e6611.zip markup-validator-48a9817412f45e8e95cac6b3c3dde516366e6611.tar.gz markup-validator-48a9817412f45e8e95cac6b3c3dde516366e6611.tar.bz2 |
Add "for" attribute to <label>'s everywhere as well as the corresponding id's
so that MSIE users can also just click on the labels.
Diffstat (limited to 'htdocs/fragment-upload.html')
-rwxr-xr-x | htdocs/fragment-upload.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/htdocs/fragment-upload.html b/htdocs/fragment-upload.html index 027241c..b419346 100755 --- a/htdocs/fragment-upload.html +++ b/htdocs/fragment-upload.html @@ -1,5 +1,5 @@ -<!--#set var="revision" value="\$Id: fragment-upload.html,v 1.6 2002-10-23 23:11:29 link Exp $" ---><!--#set var="date" value="\$Date: 2002-10-23 23:11:29 $" +<!--#set var="revision" value="\$Id: fragment-upload.html,v 1.7 2002-12-06 21:30:27 ville Exp $" +--><!--#set var="date" value="\$Date: 2002-12-06 21:30:27 $" --><!--#set var="title" value="W3C MarkUp Validation Service: Validate Fragment" --><!--#set var="relroot" value="./" --><!--#include virtual="header.html" --> @@ -30,18 +30,18 @@ </tr> <tr> <td> - <label><input name="ss" type="checkbox" value="" /> Show Source</label> + <label for="ss"><input id="ss" name="ss" type="checkbox" value="1" /> Show Source</label> </td> <td> - <label><input name="sp" type="checkbox" value="" /> Show Parse Tree</label> + <label for="sp"><input id="sp" name="sp" type="checkbox" value="1" /> Show Parse Tree</label> </td> </tr> <tr> <td> - <label><input name="outline" type="checkbox" value="" /> Show Outline</label> + <label for="outline"><input id="outline" name="outline" type="checkbox" value="1" /> Show Outline</label> </td> <td> - <label><input name="noatt" type="checkbox" value="" /> ...exclude attributes</label> + <label for="noatt"><input id="noatt" name="noatt" type="checkbox" value="1" /> ...exclude attributes</label> </td> </tr> <tr> |