In Chrome, there are some special style on the input elements. For example, the following is a search textbox in Chrome.

To restore the standard textbox view, apply the -webkit-appearance on the search textbox.
input[type="search"] {
-webkit-appearance: none;
}
Done =)
Reference:

