| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Dynamically set paged overflow on a DIV element</title> | 4 <title>Dynamically set paged overflow on a DIV element</title> |
| 5 <script> | 5 <script> |
| 6 function test() { | 6 function test() { |
| 7 document.body.offsetTop; // trigger layout | 7 document.body.offsetTop; // trigger layout |
| 8 document.getElementById('elm').style.overflow = '-webkit-paged-x
'; | 8 document.getElementById('elm').style.overflow = '-webkit-paged-x
'; |
| 9 document.getElementById('elm').style.overflow = 'paged-x'; | 9 document.getElementById('elm').style.overflow = 'paged-x'; |
| 10 } | 10 } |
| 11 </script> | 11 </script> |
| 12 </head> | 12 </head> |
| 13 <body onload="test()"> | 13 <body onload="test()"> |
| 14 <div id="elm" style="width:30em; height:10em;"> | 14 <div id="elm" style="width:30em; height:10em;"> |
| 15 There should be no text below. | 15 There should be no text below. |
| 16 <div style="margin-top:10em;">FAIL</div> | 16 <div style="margin-top:10em;">FAIL</div> |
| 17 </div> | 17 </div> |
| 18 </body> | 18 </body> |
| 19 </html> | 19 </html> |
| OLD | NEW |