Reports redundant closing tags on empty elements, for example, img or br.

Example:


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

After the quick-fix is applied:


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