blob: 5c749d9c80c9875107d72390d1cef11576417a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div style="border: dashed green">
<span style="color: green">should be green in a green border</span>
</div>
<div style="border: dashed green">
<span style="color: green">should be green in a green border</span>
</div>
<div><div>Should be uncolored with no border</div></div>
<div>true, true</div>
<div><span>In a span</span><div>Should be uncolored with no border</div></div>
<div>PASS</div>
<div><span style="color: green">PASS</span></div>
<div>PASS</div>
</body>
</html>
|