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

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: Remove assertion in LayoutTable::addChildIgnoringContinuation() - crashed fast/table/crash-bad-chil… Created 5 years, 10 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/dynamic/block-with-spanner-and-inline-and-table-column-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 </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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/block-with-spanner-and-inline-and-table-column-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698