Use correct case for tag attribute names

This rule detects tag attribute names with incorrect case. An automated fix will correct this 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"/>