summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-shapes/shape-outside/shape-image/shape-image-024.html
blob: 3ca0ba912b146a7aad4a51ad25d358b6ffb59367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
    <title>CSS Test: shape-outside from img element with different size than the image file</title>
    <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com"/>
    <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"/>
    <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property"/>
    <link rel="match" href="reference/shape-image-024-ref.html"/>
    <meta name="flags" content="ahem"/>
    <meta name="assert" content="This test verifies that content wraps around all the image pixels
                                 calculated from the size of the img element, which is different
                                 than the size of the image itself."/>
    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
    <style type="text/css">
        body {
            margin: 0;
        }
        .container {
          left: 10px;
          font: 100px/1 Ahem;
        }
        #test {
            width: 211px;
            color: rgb(0,100,0);
        }
        #image {
            float: left;
            width: 200px;
            height: 200px;
            shape-outside: url("support/left-half-rectangle.png");
            shape-margin: 10px;
        }
        .blue {
            width: 2px;
            height: 200px;
            background-color: blue;
        }
        .left-line { left: 115px; }
        .right-line { left: 230px; }

        .failure {
            left: 120px;
            width: 100px;
            height: 200px;
            background-color: red;
            z-index: -1;
        }
        .container, .blue, .failure {
            position: absolute;
            top: 70px;
        }
    </style>
</head>
<body>
    <p>
        The test passes if the green rectangle on the right is completely between the two blue lines.
        There should be no red.
    </p>
    <div id="test" class="container">
        <img id="image" src="support/left-half-rectangle.png"/>
        X<br/>X
    </div>
    <div class="blue left-line"></div>
    <div class="blue right-line"></div>
    <div class="failure"></div>
</body>
</html>