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

Side by Side Diff: LayoutTests/fast/multicol/span/spanner-nested-dynamic.html

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: code review Created 6 years, 3 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 var elm = document.getElementById('elm');
5 elm.offsetTop; // trigger layout
6 elm.style.WebkitColumns = '6';
7 elm.style.columns = '6';
8 }
9 </script>
10 <p>There should be nothing below.</p>
11 <div id="elm" style="-webkit-column-gap:0; column-gap:0; width:4em; overflow:hid den;">
12 <div style="-webkit-column-span:all; column-span:all; padding-left:4em;">
13 <div style="-webkit-column-span:all; column-span:all;">
14 FAIL
15 </div>
16 </div>
17 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698