"Text" input elements require a non-whitespace default text

Description

All input elements with a type of "text" should have a default text which is not empty.

Example

Wrong

<label for="search">Search: </label><input type="text" name="search" id="search" value=""/>

Right

<label for="search">Search: </label><input type="text" name="search" id="search" value="Search"/>

Quail Class Name

inputTextValueNotEmpty
Severity: 
1