summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-input-element/range-intrinsic-size-ref.html
blob: 48beaea3f6dd07975964132b53fae1037ca68b13 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
  <meta charset="utf-8">
  <title>Reference: type=range intrinsic size</title>
  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1512066">
  <style>
html,body {
  color:black; background-color:white; font:16px/1 monospace;
}

.flex {
  display: inline-flex;
  width: 0;
  border: 1px solid;
  justify-items:start;
}
.flex2 {
  display: inline-flex;
  border: 1px solid;
  justify-items:start;
}
.grid {
  display: inline-grid;
  grid: auto / 0;
  border: 1px solid;
  justify-items:start;
}
.grid2 {
  display: inline-grid;
  border: 1px solid;
  justify-items:start;
}
.ib {
  display: inline-block;
  width: 0;
  border: 1px solid;
  justify-items:start;
}

input {
   width: max-content;
   min-width: 0;
}
input.min {
   min-width: min-content;
}
input.mbp0 {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  border: 0;
}
  </style>
</head>
<body>

<div class="flex"><input type="range" class="min"></div><br>
<div class="flex"><input type="range" style="width:0"></div><br>
<div class="flex"><input type="range" class="min"></div><br>
<div class="flex"><input type="range" class="min"></div><br>
<div class="flex"><input type="range" class="min"></div><br>
<br>

<div class="flex2"><input type="range"></div>
<div class="flex2" style="width:3px"><input type="range" style="width:3px" class="mbp0"></div>
<div class="flex2" style="width:30px"><input type="range" class="mbp0"></div>
<div class="flex2"><input type="range"></div>
<div class="flex2"><input type="range"></div>
<div class="flex2"><input type="range"></div>
<div class="flex2"><input type="range"></div>
<br>

<div class="grid"><input type="range" style="width:0"></div><br>
<div class="grid"><input type="range" style="width:0"></div><br>
<div class="grid" style="justify-items:start"><input type="range"></div><br>

<div class="grid2"><input type="range"></div>
<div class="grid2"><input type="range" style="min-width:0"></div>
<div class="grid2" style="width:3px"><input type="range" style="width:3px" class="mbp0"></div>
<div class="flex2" style="width:30px"><input type="range" class="mbp0"></div>
<div class="flex2" style="width:30px"><input type="range" class="mbp0"></div>
<div class="grid2" style="justify-items:start"><input type="range"></div>

<br>

<div class="ib"><input type="range"></div><br>
<div class="ib"><input type="range"></div><br>

<input type="range">
<input type="range"

</body>
</html>