| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>This test is successful if fixed position elements re-layout correctly on
page scale changes</title> | 4 <title>This test is successful if fixed position elements re-layout correctly on
page scale changes</title> |
| 5 <style> | 5 <style> |
| 6 .fixed_size { | 6 .fixed_size { |
| 7 position:fixed; | 7 position:fixed; |
| 8 background-color:#ccffcc; | 8 background-color:#ccffcc; |
| 9 width:50px; | 9 width:50px; |
| 10 height:50px; | 10 height:50px; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 // Force scrollbar to hide and re-layout immediately. | 34 // Force scrollbar to hide and re-layout immediately. |
| 35 window.internals.setPageScaleFactor(0.1, 0, 0); | 35 window.internals.setPageScaleFactor(0.1, 0, 0); |
| 36 document.body.offsetTop; | 36 document.body.offsetTop; |
| 37 | 37 |
| 38 window.internals.setPageScaleFactor(0.5, 0, 0); | 38 window.internals.setPageScaleFactor(0.5, 0, 0); |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 </script> | 41 </script> |
| 42 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |