chromium/third_party/blink/web_tests/css2.1/t140201-c536-bgpos-00-b-ag.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: background-position</title>
  <script src="../resources/ahem.js"></script>
  <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>