<?xml version="1.0" encoding="UTF-8"?>
<html>
    <head>
        <title>Test : Borders : none</title>
        <style type="text/css">
		.t1 {
			width: 150px;
			border: 1px solid black;
			background-image: url(image.png);
			background-repeat: repeat;
		}
        </style>
    </head>
    
    <body>
		<h3>Test of background images</h3>
		<div class="t1">test with<br/> background<br/> image</div>
		
		<img src="image.png"/>
		
		<p>The image above and the background image in the div above that should look the same</p>
    </body>

</html>