chromium/third_party/blink/web_tests/fast/forms/text/text-lineheight-centering.html

<!DOCTYPE html>
<body>
<style>
body {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 16px;
}
input {
    line-height: 33px;
    height: 33px;

    -webkit-appearance:none;
    background: red;
    border: none;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    text-decoration: underline;
    vertical-align: top;
    width: 80px;
}
</style>
<!-- vertical position of text should be same as the DIV case. -->
<input value="Some text">
</body>