blob: efd666d49bde740d9a8cce3e27e52834b7b2bf8a (
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
|
<!DOCTYPE html>
<style>
select {
outline: 2px solid;
margin: 0;
}
</style>
<body>
<p>Check that min-width intrinsic size still applies if a fixed width is set.</p>
<select></select>
<select></select>
<select></select>
<div style="width: 30px">
<select></select>
</div>
<div style="width: 10px">
<select></select>
</div>
</body>
|