input-date-baseline.html (589B)
1 <!doctype html> 2 <title>date input baseline shouldn't be insane</title> 3 <link rel="match" href="input-date-baseline-ref.html"> 4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1667510"> 5 <link rel="stylesheet" href="/fonts/ahem.css"> 6 <style> 7 div { 8 border: 1px solid black; 9 line-height: 0; 10 } 11 12 input { 13 height: 20px; 14 font: 20px/1 Ahem; 15 box-sizing: border-box; 16 padding: 1px; /* needed to trigger the bug */ 17 border: 0; 18 visibility: hidden; 19 -webkit-appearance: none; 20 appearance: none; 21 } 22 </style> 23 <div> 24 <input type="date"> 25 </div>