Sachsentext

All "input" elements of type "text" must have a default text

All input elements with a type of "text" should have a default text.

Example

Wrong

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

Right

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