summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-image/multicolor-image-1.html
blob: de76bd27beb105f29078ef6304c226f2929d03bb (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
<!DOCTYPE html>
<html lang="en-US">
<head>
  <title>test of border-image</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <style type="text/css">

  div {
    border-width: 7px;
    border-style: solid;
    background: red; /* fail if this shows through */
    background-image: url('3x3multicolor.png'); /* fail if this shows through */
    border-image: url('3x3multicolor.png') 1 1 1 1 fill;
    -khtml-border-image: url('3x3multicolor.png') 1 1 1 1 fill;
    border-image: url('3x3multicolor.png') 1 1 1 1 fill;
  }

  </style>
</head>
<body>
<div style="width: 100px; height: 5px"></div>
</body>
</html>