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

Side by Side Diff: LayoutTests/imported/csswg-test/css-shapes-1/shape-outside/shape-image/gradients/shape-outside-linear-gradient-004-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="Alan Stearns" href="mailto:stearns@adobe.com"/>
6 <style type="text/css">
7 .square {
8 display: inline-block;
9 width: 100px;
10 height: 100px;
11 line-height: 100px;
12 background-color: green;
13 }
14 #test {
15 position: absolute;
16 top: 70px;
17 width: 200px;
18 font-size: 0px;
19 }
20 #test > .right {
21 margin-left: 100px;
22 }
23 </style>
24 </head>
25 <body>
26 <p>
27 The test passes if there are four green squares alternating left and rig ht. There
28 should be no red.
29 </p>
30 <div id="test">
31 <div class="square"></div><br>
32 <div class="square right"></div><br>
33 <div class="square"></div><br>
34 <div class="square right"></div>
35 </div>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698