mirror of
https://github.com/servo/servo.git
synced 2025-07-10 17:03:40 +01:00
25 lines
No EOL
1.3 KiB
HTML
25 lines
No EOL
1.3 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">
|
|
<head>
|
|
<title>CSS Test: The 'border-image-slice' property with four percentage values</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 border image is sliced into nine regions with inward offsets, '40%' from the top, '15%' from the right,'20%' from the bottom, and '5%' from the left edges of the image. Percentages are relative to the size of the image: the width of the image for the horizontal offsets, the height for vertical offsets." />
|
|
<style type="text/css">
|
|
div
|
|
{
|
|
border: 40px double red;
|
|
border-image-slice: 40% 15% 20% 5%;
|
|
border-image-source: url("../support/9grid40-30-20-10-red.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> |