Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t140201-c536-bgpos-00-b-ag.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: background-position</title>
5   <style type="text/css">
6    html,body,div { margin: 0; border: 0; padding: 0; }
7    div { font: 15px/1 Ahem; color: white; width: 11em; }
8    .right { width: auto; text-align: right; }
9
10    /* tests */
11    body {background-image: url(support/swatch-red.png); background-position: right top;
12          background-repeat: no-repeat;}
13    .one {background-image: url(support/swatch-red.png); background-position: center;
14          background-repeat: no-repeat;}
15    .two {background-image: url(support/swatch-red.png); background-position: 50% 50%;
16          background-repeat: no-repeat;}
17    .three {background-image: url(support/swatch-red.png); background-position: bottom right;
18            background-repeat: no-repeat;}
19   </style>
20   <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'">
21  </head>
22  <body>
23   <div class="right">X</div>
24   <p>There should be no red on this page (look in the upper right hand corner too).</p>
25   <div class="one">
26                
27                
28          X     
29                
30                
31   </div>
32   <div class="two">
33                
34                
35          X     
36                
37                
38   </div>
39   <div class="three">
40                
41                
42                
43                
44               X
45   </div>
46  </body>
47 </html>