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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/clipping.html

Issue 341103002: [New Multicolumn] Remove unnecessary calls to setRegionBasedColumnsEnabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Column clipping</title> 4 <title>Column clipping</title>
5 <script>
6 if (window.internals)
7 internals.settings.setRegionBasedColumnsEnabled(true);
8 </script>
9 <style> 5 <style>
10 body { 6 body {
11 width: 450px; 7 width: 450px;
12 color: black; 8 color: black;
13 background: white; 9 background: white;
14 } 10 }
15 #container { margin:0 60px; } 11 #container { margin:0 60px; }
16 .mc { 12 .mc {
17 columns: 3; 13 columns: 3;
18 column-gap: 15px; 14 column-gap: 15px;
(...skipping 22 matching lines...) Expand all
41 <div class="hoverflow"> 37 <div class="hoverflow">
42 <div class="rect"></div> 38 <div class="rect"></div>
43 </div> 39 </div>
44 <div class="hoverflow"> 40 <div class="hoverflow">
45 <div class="rect"></div> 41 <div class="rect"></div>
46 </div> 42 </div>
47 </div> 43 </div>
48 </div> 44 </div>
49 </body> 45 </body>
50 </html> 46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698