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

Side by Side Diff: LayoutTests/fast/block/float/add-inlines-in-block-children-block.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>
2 <script>
3 window.onload = function() {
4 document.body.offsetTop;
5 document.getElementById('b').style.cssFloat = 'right';
6 document.getElementById('a').style.display = 'inline-block';
7 }
8 </script>
9
10 <p>There should be a blue <em>square</em> below.</p>
11
12 <div style="width:40px;">
13 <div id="a" style="width:20px; height:40px; background:blue;"></div>
14 <div id="b" style="width:20px; height:40px; background:blue;"></div>
15 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698