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

Side by Side Diff: LayoutTests/imported/csswg-test/css-shapes-1/shape-outside/supported-shapes/polygon/shape-outside-polygon-017-expected.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 Reference File</title>
5 <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
6 </head>
7 <style>
8 body {
9 margin: 0;
10 }
11 .line {
12 position: absolute;
13 top: 60px;
14 width: 2px;
15 height: 200px;
16 border-left: 2px solid blue;
17 }
18 .right {
19 left: 220px;
20 }
21 .left {
22 left: 60px;
23 }
24 .top {
25 top: 90px;
26 left: 180px;
27 }
28 .bottom {
29 top: 170px;
30 left: 60px;
31 }
32 .square {
33 position: absolute;
34 width: 40px;
35 height: 40px;
36 background-color: green;
37 }
38 </style>
39 <body>
40 <p>The test passes if there there are two green squares between the blue lin es. There should be no red.</p>
41 <div class="bottom square"></div>
42 <div class="top square"></div>
43 <div class="left line"></div>
44 <div class="right line"></div>
45 </body>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698