summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/border-image-displayed-with-transparent-border-color-ref.html
blob: 0d02257c6e6a193ceb6cc744f3a5e38fde56b5d0 (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>
<meta charset="utf-8">
<title>
  border-color: transparent should not hide the border-image
</title>
<style>
    div {
        width: 200px;
        height: 200px;
        margin: 20px;
        background-color: silver;
        border-image-source: url('./support/100x100-blue-and-orange.png');
        border-image-slice: 32;
        border-image-repeat: repeat;
        border-style: solid;
        border-width: 32px;
    }
</style>

This box should have a visible blue-orange border-image.
<div></div>