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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/static-becomes-relpos-has-abspos.html

Issue 1229983004: May need to insert or remove column sets when out-of-flow objects get their containing block change… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: code review Created 5 years, 5 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>There should be a blue <em>square</em> below.</p>
3 <div style="-webkit-columns:2; -webkit-column-gap:0; width:100px;">
4 <div id="container">
5 <div style="-webkit-column-span:all;"></div>
6 <div style="position:absolute; top:0; left:0; width:50px; height:200px; background:blue;"></div>
7 </div>
8 </div>
9 <script>
10 document.body.offsetTop;
11 document.getElementById("container").style.position = "relative";
12 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698