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

Side by Side Diff: LayoutTests/fast/block/float/add-inline-between-floats-with-preceding-anonymous-box.html

Issue 1310253005: Strip anonymous wrappers when a block flow no longer requires them (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
mstensho (USE GERRIT) 2015/09/15 11:47:30 The test looks fine. But could you add an foo-expe
2 <style>
3 #a, #d {
4 display: inline-block;
5 }
6 #b, #c {
7 width:25px;
8 height:50px;
9 background: blue;
10 float: left;
11 }
12 </style>
13 <p>There should be a blue <em>square</em> below.</p>
14 <div id="container">
15 <div></div><div id="a"></div><div></div><div id="b"></div><div id="c"></div>
16 </div>
17 <script>
18 document.body.offsetTop;
19 var inline = document.createElement('div');
20 inline.setAttribute("id", "d");
21 container.insertBefore(inline, document.getElementById("c"));
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698