I have an <input type="search"/> element (no other HTML).
Here’s the CSS:
input[type=search] {
border: 1px solid #000;
padding: 4px 12px;
border-radius: 8px;
}
In Firefox 7 it looks great:

However, in Chrome 15 the rounded corners are cut off:

Any way I can fix this?
You just need to add
-webkit-appearance: noneto fix it.