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

Side by Side Diff: LayoutTests/imported/csswg-test/css-shapes-1/shape-outside/shape-image/shape-image-018.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: 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-prop erty"/>
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 + sh ape-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;
19 }
20 #image {
21 float: right;
22 margin-left: 100px;
23 shape-outside: url("support/left-half-rectangle.jpg"); /* size: 100x 100, no alpha channel */
24 shape-margin: 10%; /* overall shape is 120x120 rectangle with corner radii = 10px */
25 }
26 #failure {
27 position: absolute;
28 top: 0px;
29 left: 40px; /* container.width - shape-outside+margin.width - font-s ize */
30 width: 200px;
31 text-align: left;
32 color: red;
33 z-index: -1;
34 }
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698