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

Side by Side Diff: LayoutTests/fast/multicol/span/remove-row-content3.html

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: Created 6 years, 7 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 <title>Remove some content from row before spanner</title>
3 <script>
4 if (window.internals)
5 internals.settings.setRegionBasedColumnsEnabled(true);
6 onload = function() {
7 var elm = document.getElementById('elm');
8 elm.offsetTop; // trigger layout
9 elm.style.display = 'none';
10 }
11 </script>
12 <style>
13 .spanner { -webkit-column-span:all; column-span:all; }
14 </style>
15 <p>There should be three lines below with the word "PASS". Letter spacing is exp ected to vary</p>
16 <div style="float:left; overflow:hidden;">
17 <div style="-webkit-columns:4; columns:4; column-gap:0; -webkit-column-gap:0 ; orphans:1; widows:1;">
18 P<br>P<br>A<br>
19 <div id="elm">FAIL</div>
20 A<br>S<br>S<br>S<br>S
21 <div class="spanner">PASS</div>
22 </div>
23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698