summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/checkbox/checkbox-baseline.html
blob: c133d703a81f6976ceb7b0c7c750dba147533ba3 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
  <head>
  <meta charset="utf-8">
  <title>CSS Align Test: baseline of checkbox/radio</title>
  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1322698">
  <link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-terms">
  <link rel="match" href="checkbox-baseline-ref.html">
    <style>
body { font: 16px/1 monospace; }

div { border: 1px dashed blue; }

.none {
     -moz-appearance: none; appearance: none;
  -webkit-appearance: none;
      -ms-appearance: none;
          appearance: none;
  width:0px;
  height:0px;
}
.intrinsic { width:unset; height:unset; }
.border { border: 25px solid black; }
input { margin: 20px; }

   </style>
  </head>
  <body>
    <div><input class="none intrinsic" type="checkbox" style="background:pink; outline:10px solid black">Block</div>
    <div><input class="none intrinsic" type="radio" style="background:pink; outline:1px solid black">Block</div>
    <div><input class="none intrinsic border" type="checkbox">Block</div>
    <div><input class="none intrinsic border" type="radio">Block</div>
    <div><input class="none border" type="checkbox">Block</div>
    <div><input class="none border" type="radio">Block</div>
    <div><input class="none" style="margin:0; width:20px; height:20px; background-color:pink" type="checkbox" checked>Block</div>
    <div><input class="none" style="margin:0; width:20px; height:20px; background-color:black" type="checkbox">Block</div>
    <div><input class="none" style="margin:0; width:20px; height:20px; background-color:pink" type="radio" checked>Block</div>
    <div><input class="none" style="margin:0; width:20px; height:20px; background-color:black" type="radio">Block</div>
    <div style="font-size:72px"><input class="none border" type="checkbox" style="border-width:3px">Block</div>
  </body>
</html>