summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/201293-1c.html
blob: 100efebf093db529d8f4c8420bb32933692b7dee (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
26
27
28
29
30
31
<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
      input, button { width: 32em; max-width: 16em; }
      .left { text-align: left; }
      .right { text-align: right; }
      .center { text-align: center; }
    </style>
  </head>
  <body>
    <div>
      <input type="button" value="input" class="left">
    </div>
    <div>
      <button class="left">button</button>
    </div>
    <div>
      <input type="button" value="input" class="right">
    </div>
    <div>
      <button class="right">button</button>
    </div>
    <div>
      <input type="button" value="input" class="center">
    </div>
    <div>
      <button class="center">button</button>
    </div>
  </body>
</html>