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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-after-inner-multicol-crash.html

Issue 1180613005: When looking for adjacent content inside multicols, don't consider inner multicols. (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>Insert a spanner right after an inner multicol container and before column co ntent, splitting an existing column row.</p>
3 <p>PASS if no crash or assertion failure.</p>
4 <div style="-webkit-columns:3;">
5 <div style="-webkit-columns:3;">
6 &nbsp;
7 </div>
8 <div id="elm" style="display:none; -webkit-column-span:all;"></div>
9 &nbsp;
10 <div style="-webkit-column-span:all;"></div>
11 </div>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 onload = function() {
16 document.body.offsetTop;
17 document.getElementById("elm").style.display = "block";
18 }
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698