對標籤屬性名稱使用正確的大小寫

此規則會偵測具有不正確大小寫的標籤屬性名稱。 原始檔掃描器提供了此規則的快速修正程式。快速修正程式會更正該情況。

範例
<html:img
  src="/images/title.png"
  imagename="Title Image"
  width="240px"
  height="150px"/>
解決方案
<html:img
  src="/images/title.png"
  imageName="Title Image"
  width="240px"
  height="150px"/>