Files
servo/tests/wpt/css-tests/css-backgrounds-3_dev/html4/reference/css3-border-image-repeat-stretch-ref.htm

79 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<title>CSS Border Test:border image repeat property with value stretch</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">
div {
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;
}
#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 stretching between the red diamonds.
</p>
<div>
<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>
</body></html>