8. XHTML Attribute with Same Value and Name

An attribute with the same value and name is required to be declared fully. Attribute minimization is not supported.

Example 8.1 Incorrect Attribute with Same Value and Name
<input type="checkbox" name="checkboxname" checked />
	
Example 8.2 Correct Attribute with Same Value and Name
<input type="checkbox" name="checkboxname" checked="checked" />	
	

Attributes having the Same Value and Name