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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow.html

Issue 1163603002: Out-of-flow objects inside multicol may not establish column sets. (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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow-crash.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .spanner { -webkit-column-span:all; }
4 .none { display:none; }
5 </style>
6
7 <p>Insert a spanner between two absolutely positioned elements.</p>
8 <p>There should be three lines below, numbered from 1 to 3.</p>
9 <div style="-webkit-column-count:2;">
10 1
11 <div style="-webkit-column-span:all;">2</div>
12 <div style="position:absolute;"></div>
13 <div id="becomesSpanner" class="none">3</div>
14 <div style="position:absolute;"></div>
15 </div>
16
17 <script>
18 onload = function() {
19 document.body.offsetTop;
20 document.getElementById("becomesSpanner").className = "spanner";
21 }
22 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698