background-position-068

Background-position using inches with a nominal value and a plus sign, +1in

WeasyPrint

This browser

Flags
image
Assertion
The 'background-position' property correctly applies a nominal length value in inches with a plus sign.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3     <head>
 4         <title>CSS Test: Background-position using inches with a nominal value and a plus sign, +1in</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-position">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties">
 8         <meta name="flags" content="image">
 9         <meta name="assert" content="The 'background-position' property correctly applies a nominal length value in inches with a plus sign.">
10         <style type="text/css">
11             div
12             {
13                 height: 1in;
14             }
15             #div1
16             {
17                 border: 3px solid orange;
18                 width: 1.16in;
19             }
20             div div
21             {
22                 background-image: url("support/black15x15.png");
23                 background-position: +1in;
24                 background-repeat: no-repeat;
25                 width: 2in;
26             }
27         </style>
28     </head>
29     <body>
30         <p>Test passes if the black square below is vertically centered and on the right inner edge of the orange box.</p>
31         <div id="div1">
32             <div></div>
33         </div>
34     </body>
35 </html>