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