| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <!-- | 4 <!-- |
| 5 http://www.gutenberg.org/ebooks/41252 | 5 http://www.gutenberg.org/ebooks/41252 |
| 6 | 6 |
| 7 "This eBook is for the use of anyone anywhere at no cost and with almost
no restrictions whatsoever. You may copy it, give it away or re-use it under th
e terms of the Project Gutenberg License included with this eBook or online at w
ww.gutenberg.org." | 7 "This eBook is for the use of anyone anywhere at no cost and with almost
no restrictions whatsoever. You may copy it, give it away or re-use it under th
e terms of the Project Gutenberg License included with this eBook or online at w
ww.gutenberg.org." |
| 8 --> | 8 --> |
| 9 <title>Chapter reflow performance test: English prose infinite</title> | 9 <title>Chapter reflow performance test: English prose infinite</title> |
| 10 <script src="../resources/runner.js"></script> | 10 <script src="../resources/runner.js"></script> |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 style.display = "block"; | 72 style.display = "block"; |
| 73 style.width = "280px"; | 73 style.width = "280px"; |
| 74 target.offsetLeft; | 74 target.offsetLeft; |
| 75 style.width = "300px"; | 75 style.width = "300px"; |
| 76 target.offsetLeft; | 76 target.offsetLeft; |
| 77 style.width = "290px"; | 77 style.width = "290px"; |
| 78 target.offsetLeft; | 78 target.offsetLeft; |
| 79 style.display = "none"; | 79 style.display = "none"; |
| 80 } | 80 } |
| 81 | 81 |
| 82 PerfTestRunner.measureRunsPerSecond({ run: test }); | 82 PerfTestRunner.measureRunsPerSecond({ |
| 83 description: "Measures performance of 3 layouts on a page containing
English text.", |
| 84 run: test |
| 85 }); |
| 83 </script> | 86 </script> |
| 84 </body> | 87 </body> |
| 85 </html> | 88 </html> |
| OLD | NEW |