blob: c354666871989906a77a806400fe4fe966e53eee [file] [log] [blame]
<!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">
<head>
<title>CSS Test: The 'border-image-slice' property with the 'fill' keyword</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-image-slice" />
<meta name="flags" content="image" />
<meta name="assert" content="This test checks that the 'fill' keyword, if present, causes the middle part of the border-image to be preserved." />
<style type="text/css">
div
{
background-color: red;
border: 40px double red;
border-image-slice: 40% 15% 20% 5% fill;
border-image-source: url("../support/9grid40-30-20-10-lime.png");
height: 100px;
margin: 50px;
width: 200px;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>
<div></div>
</body>
</html>