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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/spanner-becomes-float.html

Issue 1162253006: An object may become a column spanner or cease to be one even if column-span doesn't change. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 <p>Set the float property on a spanner so that it ceases to be a spanner.</p>
3 <p>There should be three blue <em>squares</em> below.</p>
4 <div style="-webkit-columns:3; -webkit-column-gap:0; width:600px;">
5 <div id="elm" style="-webkit-column-span:all; width:100px; height:300px; bac kground:blue;"></div>
6 </div>
7 <script>
8 document.body.offsetTop;
9 document.getElementById("elm").style.cssFloat = "left";
10 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698