haikuwebkit/LayoutTests/css2.1/t140201-c534-bgre-00-b-ag.html

39 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: background-repeat</title>
<style type="text/css">
.test { font: 15px/1 Ahem; width: 10em; background: red; color: green; border: solid black; }
.one {background-image: url(support/swatch-green.png); background-repeat: repeat-y;}
.two {background-image: url(support/swatch-green.png); background-repeat: repeat-x;}
.three {background-image: url(support/swatch-green.png); background-repeat: no-repeat;}
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" title="14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'">
</head>
<body>
<p>There should be a green block below.</p>
<div class="test">
<div class="one">
 xxxxxxxxx
 xxxxxxxxx
 xxxxxxxxx
 xxxxxxxxx
 xxxxxxxxx
</div>
<div class="two">
          
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
</div>
<div class="three">
 xxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
</div>
</div>
</body>
</html>