Use correct case for tag attribute names

This rule detects tag attribute names with incorrect case. A quick fix for this rule is available in the source scanner. The quick fix corrects the case.

Example
<html:img
  src="/images/title.png"
  imagename="Title Image"
  width="240px"
  height="150px"/>
Solution
 <html:img src="/images/title.png"
			imageName="Title
				Image" width="240px"
			height="150px"/>