All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.RequiredAttributeCheck.html Maven / Gradle / Ivy

The newest version!

This rule checks that the specified attributes are present in HTML tags.

For a required attribute list of: img.alt,img.height,img.width

Noncompliant Code Example

  <img src="/images/queen.png"> <!-- Noncompliant; missing all required attributes -->

Compliant Solution

  <img src="/images/queen.png" width="60" height="85" alt="Elizabeth II">




© 2015 - 2024 Weber Informatics LLC | Privacy Policy