| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html lang="en"> | 3 <html lang="en"> |
| 4 <head> | 4 <head> |
| 5 <script src="../../resources/ahem.js"></script> |
| 5 <style type="text/css" media="screen"> | 6 <style type="text/css" media="screen"> |
| 6 | 7 |
| 7 .container { | 8 .container { |
| 8 width: 400px; | 9 width: 400px; |
| 9 height: 100px; | 10 height: 100px; |
| 10 border: 1px solid black; | 11 border: 1px solid black; |
| 11 font-size: 50px; | 12 font-size: 50px; |
| 12 -webkit-column-count: 2; | 13 -webkit-column-count: 2; |
| 13 column-count: 2; | 14 column-count: 2; |
| 14 column-fill: auto; | 15 column-fill: auto; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 27 </script> | 28 </script> |
| 28 </head> | 29 </head> |
| 29 <body onload="runRepaintAndPixelTest();"> | 30 <body onload="runRepaintAndPixelTest();"> |
| 30 | 31 |
| 31 <div class="container"> | 32 <div class="container"> |
| 32 <br> | 33 <br> |
| 33 <span id="a">x</span> | 34 <span id="a">x</span> |
| 34 </div> | 35 </div> |
| 35 </body> | 36 </body> |
| 36 </html> | 37 </html> |
| OLD | NEW |