Files
servo/tests/wpt/css-tests/css-backgrounds-3_dev/xhtml1print/reference/css3-border-image-repeat-repeat-ref.xht

86 lines
3.0 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
<meta charset="utf-8" />
<title>CSS Border Test:border image repeat property with value repeat</title>
<link href="mailto:yanshasha133@gmail.com" rel="author" title="yanshasha" />
<link href="mailto:shendayang@baidu.com" rel="reviewer" title="Dayang Shen" /> <!-- 2013-09-03 -->
<style type="text/css">
.box {
width: 152px;
height: 152px;
position: relative;
}
.red {
width: 26px;
height: 26px;
position: absolute;
}
#red1 {
top: 0;
left: 0;
}
#red2 {
top: 0;
right: 0;
}
#red3 {
bottom: 0;
right: 0;
}
#red4 {
bottom: 0;
left: 0;
}
.blue {
position: absolute;
background-image: url(../support/blue-diamond.png);
background-repeat: repeat;
background-position: center;
}
#blue1 {
top: 0;
left: 26px;
width: 100px;
height: 26px;
}
#blue2 {
top: 26px;
right: 0;
width: 26px;
height: 100px;
}
#blue3 {
bottom: 0;
right: 26px;
width: 100px;
height: 26px;
}
#blue4 {
bottom: 26px;
left: 0;
width: 26px;
height: 100px;
}
</style>
</head>
<body>
<p>
The test passes if the blue diamond is repeating between the red diamonds.
</p>
<div class="box">
<img src="../support/red-diamond.png" alt="left top red diamond" id="red1" class="red" />
<img src="../support/red-diamond.png" alt="right top red diamond" id="red2" class="red" />
<img src="../support/red-diamond.png" alt="right bottom red diamond" id="red3" class="red" />
<img src="../support/red-diamond.png" alt="left bottom red diamond" id="red4" class="red" />
<img src="../support/blue-diamond.png" alt="top blue diamond" id="blue1" class="blue" />
<img src="../support/blue-diamond.png" alt="right blue diamond" id="blue2" class="blue" />
<img src="../support/blue-diamond.png" alt="bottom blue diamond" id="blue3" class="blue" />
<img src="../support/blue-diamond.png" alt="left blue diamond" id="blue4" class="blue" />
<div id="blue1" class="blue"></div>
<div id="blue2" class="blue"></div>
<div id="blue3" class="blue"></div>
<div id="blue4" class="blue"></div>
</div>
</body></html>