servo/tests/wpt/css-tests/css-backgrounds-3_dev/xhtml1print/border-image-space-001.xht

27 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- Submitted from TestTWF Paris --><head>
<title>CSS Test: Border Image: box with spaced repeating border image</title>
<link href="mailto:leviw@chromium.org" rel="author" title="Levi Weintraub" />
<link href="http://www.w3.org/TR/css3-background/#the-border-image-repeat" rel="help" />
<meta content="" name="flags" />
<meta content="border-image-repeat: space property spaces out background image that doesn't fit an even number of times." name="assert" />
<link href="reference/border-image-space-001-ref.xht" rel="match" />
<style>
.borderContainer {
width: 108px;
height: 108px;
border-image: url('support/border.png') 27;
background-color: green;
border-image-repeat: space;
border-image-width: 20px;
}
</style>
</head>
<body>
<p>There should be a green box below with red diamonds in the corners, and three yellow diamonds evenly spaced
apart along the edges.</p>
<div class="borderContainer">
</div>
</body></html>