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

Side by Side Diff: LayoutTests/fast/multicol/content-change-same-height.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
« no previous file with comments | « LayoutTests/fast/multicol/change-height.html ('k') | LayoutTests/fast/multicol/cssom-view.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 if (window.internals)
4 internals.settings.setRegionBasedColumnsEnabled(true);
5 if (window.testRunner) 3 if (window.testRunner)
6 testRunner.dumpAsText(); 4 testRunner.dumpAsText();
7 onload = function() { 5 onload = function() {
8 document.body.offsetTop; 6 document.body.offsetTop;
9 document.getElementById('elm').innerHTML= "x"; 7 document.getElementById('elm').innerHTML= "x";
10 document.body.offsetTop; 8 document.body.offsetTop;
11 document.getElementById('elm').innerHTML= "PASS"; 9 document.getElementById('elm').innerHTML= "PASS";
12 } 10 }
13 </script> 11 </script>
14 <p>No assertions should fail.</p> 12 <p>No assertions should fail.</p>
15 <div style="-webkit-columns:2; columns:2;"> 13 <div style="-webkit-columns:2; columns:2;">
16 <span id="elm">FAIL</span> 14 <span id="elm">FAIL</span>
17 </div> 15 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/change-height.html ('k') | LayoutTests/fast/multicol/cssom-view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698