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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/block/float/display-flow-root-001-expected.html

Issue 2620623002: Implement display:flow-root (Closed)
Patch Set: bug 672508 Created 3 years, 11 months 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html><head>
7 <meta charset="utf-8">
8 <title>Reference: display:flow-root</title>
9 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/sh ow_bug.cgi?id=1322191">
10 <style type="text/css">
11 html,body {
12 color:black; background-color:white; font:16px/1 monospace; padding:0; margin: 0;
13 }
14
15 .float {
16 float: left;
17 width: 20px;
18 height: 40px;
19 background: pink;
20 }
21
22 .clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden; }
23
24 </style>
25 </head>
26 <body>
27
28 <div style="border:1px solid">
29 <div style="margin: 40px 0">
30 <div>x</div>
31 </div>
32 </div>
33
34 <div style="border:1px solid">
35 <div class="float"></div>
36 <div class="clearfix"></div>
37 </div>
38
39 <div style="border:1px solid">
40 <div class="float"></div>
41 <div style="display:block; border:1px solid; margin-left:20px">x</div>
42 </div>
43
44 <span>
45 <span style="display:block; background:grey; margin:20px 0 0 21px"><div style= "padding:20px">x</div></span>
46 </span>
47
48 <div style="border:3px solid; height:10px;"></div>
49
50 </body>
51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698