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/table-cell-content-change-with-decorations.html

Issue 940873003: Add a more evil version of fast/multicol/table-cell-content-change.html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 document.body.offsetTop; // trigger layout
5 document.getElementById('elm').style.display = 'block';
6 }
7 </script>
8 <p>Test changing the contents of a table cell, increasing column height</p>
9 <p>You should see the text "first column" once in the first column, and the text "second
10 column" twice in the second column.</p>
11 <div style="-webkit-columns:2; -webkit-column-rule:1px solid; -webkit-column-gap :11px; width:511px; background:yellow;">
andersr 2015/02/19 16:36:09 Is background:yellow there just to make the gap vi
mstensho (USE GERRIT) 2015/02/19 16:47:04 It's there to show the actual height of the multic
12 <div style="display:table-row;">
13 first column
14 <div style="height:0.1em;"></div>
15 </div>
16 <div style="display:table-row;">
17 second column
18 <div id="elm" style="display:none;">second column</div>
19 </div>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698