Bug 1931425 - Limit how often moz-label's #setStyles runs r=reusable-components-revie...
[gecko.git] / layout / reftests / forms / button / vertical-centering.html
blob08ca3851918713356fb72195444efccf77b89184
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 input, div {
6 height: 100px;
7 display: inline-block;
8 border: 0;
9 padding: 0;
11 font: 2em sans-serif;
13 background: transparent;
14 color: black;
16 input {
17 -moz-appearance: none;
19 input::-moz-focus-inner {
20 padding: 0;
21 border: 0;
23 div {
24 line-height: 100px;
25 text-align: center;
27 </style>
28 </head>
29 <body>
30 <input type='button' value='button' />
31 <div>button</div>
32 </body>
33 </html>