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

There is a newer version: 2.6.0.1053
Show newest version

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

Noncompliant Code Example

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

<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 - 2025 Weber Informatics LLC | Privacy Policy