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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-between-out-of-flow-crash.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
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>PASS if no crash.</p>
9 <div style="-webkit-column-count:2;">
10 <div style="position:fixed;"></div>
11 <div id="becomesSpanner" class="none"></div>
12 <div style="position:fixed;"></div>
13 </div>
14
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 onload = function() {
19 document.body.offsetTop;
20 document.getElementById("becomesSpanner").className = "spanner";
21 }
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698