-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 5.3.6
-
Fix Version/s: 5.4
-
Component/s: tapestry-core
-
Labels:
When using a HTML5 DocType in a Tapestry template, the textfield component is still rendered with end tags:
Template:
<t:textfield t:id="loginEmail" value="loginEmail" type="email" />
renders as:
<input id="loginEmail" name="loginEmail" type="email"></input>
According to the specs, end tags must not be specified for void elements.