blob: fb5255eddb1cdbdc1b9b610a7813b977d822b7b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Reference case</title>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=133984">
<style>
input[type="file"] { height: auto; }
.with-outline {
outline: 2px solid teal;
}
.wrapper {
border: 2px solid fuchsia;
}
</style>
</head>
<body>
<input type="file">
<br><br>
<input type="file" class="with-outline">
<br><br>
<div class="wrapper"><input type="file"></div>
</body>
|