Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t140201-c536-bgpos-00-b-ag.html
blob3610386b226064f08f24971db183ec9557d52117
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 <script src="../resources/ahem.js"></script>
6 <style type="text/css">
7 html,body,div { margin: 0; border: 0; padding: 0; }
8 div { font: 15px/1 Ahem; color: white; width: 11em; }
9 .right { width: auto; text-align: right; }
11 /* tests */
12 body {background-image: url(support/swatch-red.png); background-position: right top;
13 background-repeat: no-repeat;}
14 .one {background-image: url(support/swatch-red.png); background-position: center;
15 background-repeat: no-repeat;}
16 .two {background-image: url(support/swatch-red.png); background-position: 50% 50%;
17 background-repeat: no-repeat;}
18 .three {background-image: url(support/swatch-red.png); background-position: bottom right;
19 background-repeat: no-repeat;}
20 </style>
21 <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'">
22 </head>
23 <body>
24 <div class="right">X</div>
25 <p>There should be no red on this page (look in the upper right hand corner too).</p>
26 <div class="one">
27            
28            
29      X     
30            
31            
32 </div>
33 <div class="two">
34            
35            
36      X     
37            
38            
39 </div>
40 <div class="three">
41            
42            
43            
44            
45           X
46 </div>
47 </body>
48 </html>