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

Side by Side Diff: LayoutTests/fast/multicol/nested-multicol-two-spanners-dynamic.html

Issue 656143003: Ignore continuations when collapsing an anonymous block. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/nested-multicol-two-spanners-dynamic-expected.txt » ('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 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 onload = function() {
6 document.body.offsetTop;
7 document.getElementById('wine').style.WebkitColumns = '2';
8 document.body.offsetTop;
9 document.getElementById('spanner1').style.display = 'block';
10 document.body.offsetTop;
11 document.getElementById('container').style.display = 'none';
12 }
13 </script>
14 <div id="container" style="-webkit-columns:2;">
15 <div id="wine">
16 <div id="beer">
17 <div id="strength"></div>
18 <div id="spanner1" style="display:none; -webkit-column-span:all;"></ div>
19 </div>
20 <div id="wisdom"></div>
21 <div id="beer2">
22 <div id="wisdom2"></div>
23 <div id="strength2"></div>
24 <div style="-webkit-column-span:all;"></div>
25 </div>
26 </div>
27 </div>
28 <p>PASS if no crash.</p>
29 <ol>
30 <li>After initial layout: A multicol has a column-span:all
31 descendant (not a direct child, so that we establish block
32 continuations and anonymous multi-column blocks)</li>
33 <li>Turn a child of this multicol container into a multicol</li>
34 <li>Add another column-span:all descendant (again, not a direct
35 child, so that we get more continuations)</li>
36 <li>Set display:none on everything</li>
37 </ol>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/nested-multicol-two-spanners-dynamic-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698