Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Add test file for border-image
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Johnston committed Apr 6, 2010
1 parent c02abe3 commit 0d7f45f
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions tests/border-image-test.html
@@ -0,0 +1,44 @@
<html>
<head>
<title></title>
<meta content="">
<style>
div {
padding: 1em;
margin: 1em;
background: #CCC;
border-width: 20px;
border-bottom-width: 30px;
height:25%;
behavior:url(../PIE.htc);
}

#test1 {
border-image: url(border.png) 27 stretch;
-pie-border-image: url(border.png) 27 stretch;
-moz-border-image: url(border.png) 27 stretch;
-webkit-border-image: url(border.png) 27 stretch;
}
#test2 {
border-image: url(border.png) 27 repeat;
-pie-border-image: url(border.png) 27 repeat;
-moz-border-image: url(border.png) 27 repeat;
-webkit-border-image: url(border.png) 27 repeat;
}
#test3 {
border-image: url(border.png) 27 round;
-pie-border-image: url(border.png) 27 round;
-moz-border-image: url(border.png) 27 round;
-webkit-border-image: url(border.png) 27 round;
}
</style>
</head>
<body>

<div id="test1">test 1</div>
<div id="test2">test 2</div>
<div id="test3">test 3</div>


</body>
</html>

0 comments on commit 0d7f45f

Please sign in to comment.