| Index: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-becomes-multicol-auto-height.html
 | 
| diff --git a/LayoutTests/fast/multicol/newmulticol/regular-block-becomes-multicol.html b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-becomes-multicol-auto-height.html
 | 
| similarity index 65%
 | 
| copy from LayoutTests/fast/multicol/newmulticol/regular-block-becomes-multicol.html
 | 
| copy to LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-becomes-multicol-auto-height.html
 | 
| index 02c536af4e3dfaff6cdced234dc285df54c2d6a4..b404cab499ef461062db8e3f6a718e18a14ad67f 100644
 | 
| --- a/LayoutTests/fast/multicol/newmulticol/regular-block-becomes-multicol.html
 | 
| +++ b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-becomes-multicol-auto-height.html
 | 
| @@ -1,22 +1,22 @@
 | 
|  <!DOCTYPE html>
 | 
|  <html>
 | 
|      <head>
 | 
| -        <title>Change regular block to multicol</title>
 | 
|          <script>
 | 
|              if (window.internals)
 | 
|                  internals.settings.setRegionBasedColumnsEnabled(true);
 | 
|              function test() {
 | 
|                  var elm = document.getElementById('elm');
 | 
|                  elm.offsetTop; // trigger layout
 | 
| -                elm.style.WebkitColumns = 4;
 | 
| -                elm.style.columns = 4;
 | 
| +                elm.style.WebkitColumns = '4';
 | 
| +                elm.style.columns = '4';
 | 
| +                elm.style.overflow = 'visible';
 | 
|              }
 | 
|          </script>
 | 
|      </head>
 | 
|      <body onload="test()">
 | 
|          <p>You should see the word 'PASS' below.</p>
 | 
| -        <div style="font-family:monospace; float:left;">
 | 
| -            <div id="elm" style="-webkit-column-gap:0; column-gap:0; orphans:1; widows:1;">
 | 
| +        <div style="float:left;">
 | 
| +            <div id="elm" style="overflow:-webkit-paged-x; -webkit-column-gap:0; column-gap:0; orphans:1; widows:1;">
 | 
|                  P<br>
 | 
|                  A<br>
 | 
|                  S<br>
 | 
| 
 |