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

Side by Side Diff: LayoutTests/fast/multicol/dynamic/block-with-spanner-and-inline-and-table-column.html

Issue 880113002: Fix crash when establishing an inline continuation inside a block continuation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <p>Test that having an inline and table-column after a spanner behaves.</p>
7 <p>You should see the word "PASS" below.</p>
8 <div style="-webkit-column-count:2;">
9 <div>
10 <div id="spanner" style="-webkit-column-span:all;"></div>
11 <span id="inline" style="display:none;">
12 <emph>
13 <footer id="block" style="display:none;">PASS</footer>
14 </emph>
15 </span>
16 <div id="table-column" style="display:table-column;"></div>
17 </div>
18 </div>
19
20 <script>
21 document.body.offsetTop;
22 document.getElementById("inline").style.display = "inline";
23
24 document.body.offsetTop;
25 document.getElementById("table-column").style.display = "none";
26
27 document.body.offsetTop;
28 document.getElementById("table-column").style.display = "table-column";
29
30 document.body.offsetTop;
31 document.getElementById('block').style.display = 'block';
32 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698