- From: <bugzilla@jessica.w3.org>
- Date: Fri, 18 Nov 2011 06:51:25 +0000
- To: www-validator-cvs@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=14872
Summary: Mobile Validator reports invalid html with named forms
Product: Validator
Version: HEAD
Platform: PC
OS/Version: Windows XP
Status: NEW
Severity: major
Priority: P2
Component: check
AssignedTo: dave.null@w3.org
ReportedBy: a11526433@nepwk.com
QAContact: www-validator-cvs@w3.org
When attempting to use the mobile validator(http://validator.w3.org/mobile) to
validate a XHTML Basic 1.1 page for compliance and the page contains a form
element with a name tag, the validator reports the page does not validate
against the XHTML Basic 1.1 doctype. However when validating the same page
against the regular validator(http://validator.w3.org/), it reports the page is
valid XHTML Basic 1.1. Here is some sample code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"
"http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Bla Bla Bla</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
</head>
<body>
<p>some more text.</p>
<form action="index.php" method="post" name="whatever">
<fieldset>
<label for="inputtext">></label><input type="text" name="inputtext"
id="inputtext" accesskey="1" />
<input type="submit" value="enter" accesskey="2" />
</fieldset>
</form>
</body>
</html>
Link to test:
http://validator.w3.org/mobile/check?task=2011111806502172.mobile2&docAddr=directinput%3A%2F%2F0%2F
--
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Friday, 18 November 2011 06:51:32 UTC