i am a happy user of CSE HTML validator Pro...but in the last version (10.0100) i have found something strange...i have a php page which with a lot of loops creates a lot of html form commands. but someone is wrong! to understand, i have lines like the following:
- Code: Select all
foreach ($categRows as $categRow) {
if ($arr[1] < 3) {
$tab++; $ascii++;
$buttons = "\n <input type=\"button\" value=\"S\" tabindex=\"" . $tab . "\" accesskey=\"" . htmlentities(chr($ascii)) . "\" title=\"show race details\" onclick=\"location.href='showRaceDetails.php?raceID=" . $categRow['ID_Race'] . "'\" />";
// etc
if i try to validate the HTML generated by CSE HTML i see strange errors like
The "type" attribute has an invalid attribute value "buton". The expected value is one of the following: "button", "checkbox", "color", "date", "datetime", "datetime-local", "email", "file", "hidden", "image", "month", "number", "password", "radio", "range", "reset", "search", "submit", "tel", "text", "textarea", "time", "url", or "week". (BUTON instead of BUTTON)
but for other BUTTON TAG parameters lke this:
The "tile" attribute is not valid for the "input" element (TILE instead of TITLE)
they are bugs? the generated page is quite big, about 40 KB..



