blob: 5520991b7493cd3f07c986c784e4c2fead3ef271 (
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
|
<!DOCTYPE HTML>
<title>Testcase for outline:auto</title>
<style>
html, body {
color: black;
background-color: white;
padding: 10px;
margin: 0;
}
.a, .a2 {
outline: auto;
width:190px;
height: 10px;
background: black;
}
.a2 {
width: 194px;
height: 14px;
margin-left: -2px;
margin-top: -2px;
}
.w {
border: solid black;
border-width: 5px;
margin: 20px;
width: 190px;
height: 10px;
}
</style>
<div class="w"><div class="a" style="outline-width:10px; outline-offset:5px;"></div></div>
<div class="w"><div class="a" style="outline-width:10px; outline-offset:10px;"></div></div>
<div class="w"><div class="a2" style="outline-width:10px; outline-offset:-2px;"></div></div>
<div class="w"><div class="a" style="outline-width:15px; outline-offset:6px;"></div></div>
<div class="w"><div class="a" style="outline-width:11px; outline-offset:5px;"></div></div>
<div class="w"><div class="a" style="outline-width:11px; outline-offset:10px;"></div></div>
<div class="w"><div class="a2" style="outline-width:11px; outline-offset:-2px;"></div></div>
|