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

Side by Side Diff: LayoutTests/fast/multicol/static-child-becomes-fixedpos.html

Issue 1148173003: Changing out-of-flow-ness on a multicol child may affect the need for column sets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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>Change a static positioned child of an otherwise empty multicol container to fixed positioned.</p>
3 <p>There should be a blue <em>square</em> below.</p>
4 <div style="-webkit-columns:2; width:100px; background:blue;">
5 <div style="-webkit-column-span:all; margin-bottom:100px;"></div>
6 <div id="elm">
7 <br>
8 </div>
9 <div style="-webkit-column-span:all; margin-top:100px;"></div>
10 </div>
11 <script>
12 document.body.offsetTop;
13 document.getElementById("elm").style.position = "absolute";
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698