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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/regular-block-becomes-multicol.html

Issue 218663004: Changing between multicol and regular block shouldn't recreate all renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review Created 6 years, 8 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.internals)
4 internals.settings.setRegionBasedColumnsEnabled(true);
5 onload = function() {
6 var elm = document.getElementById('elm');
7 elm.offsetTop; // trigger layout
8 elm.style.WebkitColumns = 4;
9 elm.style.columns = 4;
10 }
11 </script>
12 <p>You should see the word 'PASS' below.</p>
13 <div style="font-family:monospace; float:left;">
14 <div id="elm" style="-webkit-column-gap:0; column-gap:0; orphans:1; widows:1 ;">
15 P<br>
16 A<br>
17 S<br>
18 S<br>
19 </div>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698