Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: LayoutTests/imported/csswg-test/css-shapes-1/shape-outside/shape-image/shape-image-001.html

Issue 816533002: Import CSSWG Shapes tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: One more test expectations update Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>CSS Test: Image shape on a left float</title>
5 <link rel="author" title="Bem Jones-Bey" href="bjonesbe@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-prop erty"/>
8 <link rel="match" href="reference/shape-image-001-ref.html"/>
9 <meta name="flags" content="ahem image"/>
10 <meta name="assert" content="This test verifies that a shape specified as a png image with 70% alpha is treated as if the image had no alpha."/>
11 <style type="text/css">
12 .container {
13 position: relative;
14 font-family: Ahem;
15 font-size: 50px;
16 line-height: 50px;
17 }
18 #test {
19 width: 150px;
20 color: rgb(0, 100, 0);
21 background-color: black;
22 }
23 #image {
24 float: left;
25 width: 150px;
26 height: 100px;
27 shape-outside: url("support/left-half-rectangle-70.png");
28 }
29 #failure {
30 width: 50px;
31 height: 100px;
32 background-color: red;
33 position: absolute;
34 top: 0px;
35 right: 0px;
36 z-index: -1;
37 }
38 </style>
39 </head>
40 <body>
41 <p>
42 The test passes if you see a green rectangle, a black rectangle, and a g reen rectangle next to each other. There should be no red.
43 </p>
44 <div id="test" class="container">
45 <div id="failure"></div>
46 <div id="image">
47 <img src="support/left-half-rectangle-70.png"/>
48 </div>
49 X
50 X
51 </div>
52 </body>
53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698