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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-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 after another spanner and before existing multicol content. The other spanner has a multicol container with yet another spanner inside.</p>
3 <p>PASS if no crash or assertion failure.</p>
4 <div style="-webkit-column-count:3;">
5 <div style="-webkit-column-span:all;">
6 <div style="-webkit-column-count:2;">
7 <div style="-webkit-column-span:all;"></div>
8 &nbsp;
9 </div>
10 </div>
11 <div id="willBecomeSpanner"></div>
12 &nbsp;
13 </div>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 document.body.offsetTop;
18 document.getElementById("willBecomeSpanner").style.webkitColumnSpan = "all";
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698