haikuwebkit/LayoutTests/css2.1/t140201-c536-bgpos-00-b-ag....

47 lines
1.7 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-position</title>
<style type="text/css">
html,body,div { margin: 0; border: 0; padding: 0; }
div { font: 15px/1 Ahem; color: white; width: 11em; }
.right { width: auto; text-align: right; }
/* tests */
body {background-image: url(support/swatch-red.png); background-position: right top;
background-repeat: no-repeat;}
.one {background-image: url(support/swatch-red.png); background-position: center;
background-repeat: no-repeat;}
.two {background-image: url(support/swatch-red.png); background-position: 50% 50%;
background-repeat: no-repeat;}
.three {background-image: url(support/swatch-red.png); background-position: bottom right;
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>
<div class="right">X</div>
<p>There should be no red on this page (look in the upper right hand corner too).</p>
<div class="one">
           
           
     X     
           
           
</div>
<div class="two">
           
           
     X     
           
           
</div>
<div class="three">
           
           
           
           
          X
</div>
</body>
</html>