Reports a redundant closing tag for an empty element, for example, img or br.

Example:


  <html>
    <body>
      <br></br>
    </body>
  </html>

After the quick-fix is applied:


  <html>
    <body>
      <br>
    </body>
  </html>