XHTML-MP Validation: Element "HEAD" undefined, Unknown Parse Model

Is it possible to validate XHTML-Mobile Profile with the current w3c validator?

I can work with XHTML-Basic OK. But event this fairly simple XHTML-MP
page gives "element HEAD undefined" on the current version,
and "errors loading the DTD" on the beta test validator.


<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.1//EN"
"http://www.openmobilealliance.org/tech/DTD/xhtml-mobile11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
 <title>City CarShare</title>
</head>

<body onload="document.forms[0].userid.focus();">
<form method="post" action="/v2/mobile/mlogin.do">
 <p>
  <img src="/v2/images/logo_m.png" alt="" height="45" width="45" style="float: left; margin: 4px;"/>

  City CarShare Reservation System<br clear="all"/>
 </p>
 <p>
  ID: <input name="userid"  style='-wap-input-format:"*N";' format="NNNNNN" inputmode="digits"
     value=""/><br/>
  Pass: <input name="pin" style='-wap-input-format:"*N";' format="NNNNNN" inputmode="digits"
     value=""/><br/>
  <input type="submit" value="Login"/>
 </p>

 <p style="max-width: 20em;">Don't use the door locks on City CarShare vehicles! Instead hold
  your fob still over the reader to unlock, and lock, the doors.
 </p>

 <p>Large version at <a href="http://www.citycarshare.org/login.do">www.citycarshare.org</a></p>
</form>
</body>
</html>

Received on Sunday, 22 July 2007 17:07:41 UTC