<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>autocomplete.jsp</title>

 
 

  </head>
  <body>
      
          autocomplete on -&gt; no attribute rendered: <input id="a" type="password" name="a" value="" />
          autocomplete off -&gt; attribute rendered: <input id="b" type="password" name="b" autocomplete="off" value="" />
          no autocomplete defined -&gt; no attribute rendered: <input id="c" type="password" name="c" value="" />
          autocomplete on -&gt; no attribute rendered: <input id="d" type="text" name="d" />
          autocomplete off -&gt; attribute rendered: <input id="e" type="text" name="e" autocomplete="off" />
          no autocomplete defined -&gt; no attribute rendered: <input id="f" type="text" name="f" />
  </body>
</html>


