Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / imported / csswg-test / css-shapes-1 / shape-outside / shape-image / shape-image-018.html
blob520bbcae6eac6b82f3cc4bcf6624b45209f3ce2c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>CSS Test: right float, url(jpg), real image + shape-margin (%)</title>
5 <link rel="author" title="Hans Muller" href="hmuller@adobe.com"/>
6 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
7 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
8 <link rel="match" href="reference/shape-image-018-ref.html"/>
9 <meta name="flags" content="ahem"/>
10 <meta name="assert" content="This test verifies that the boundary of a shape-outside defined by a JPEG image file is the same as the image's dimensions + shape-margin."/>
11 <style type="text/css">
12 #container {
13 position: relative;
14 width: 200px;
15 font-family: Ahem;
16 font-size: 40px;
17 text-align: right;
18 color: green;
20 #image {
21 float: right;
22 margin-left: 100px;
23 shape-outside: url("support/left-half-rectangle.jpg"); /* size: 100x100, no alpha channel */
24 shape-margin: 10%; /* overall shape is 120x120 rectangle with corner radii = 10px */
26 #failure {
27 position: absolute;
28 top: 0px;
29 left: 40px; /* container.width - shape-outside+margin.width - font-size */
30 width: 200px;
31 text-align: left;
32 color: red;
33 z-index: -1;
35 </style>
36 </head>
37 <body>
38 <p>The test passes if no red is visible.</p>
39 <div id="container">
40 <img id="image" src="support/left-half-rectangle.jpg"/>
41 X<br>X<br>X<br>X
42 <div id="failure">
43 X<br>X<br>X<br><span style="margin-left: 120px">X
44 </div>
45 </div>
46 </body>
47 </html>