Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<!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>