summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/542116-1.html
blob: 02cf77b01362cc06141a1159ec1178fa4aead34c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <head>
    <style>
      input {
        -moz-appearance: none;
        margin: 0;
        padding: 10px;
        font-size: 40px;
        height: 100px;
        width: 100px;
        border: 1px solid red;
      }
    </style>
  </head>
  <body onload="document.getElementById('i').focus()">
    <input type="text" id="i">
  </body>
</html>