| 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 thrice</title> | 9 <title>Chapter reflow performance test: English prose thrice</title> |
| 10 <script src="../resources/runner.js"></script> | 10 <script src="../resources/runner.js"></script> |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 style.width = "280px"; | 83 style.width = "280px"; |
| 84 target.offsetLeft; | 84 target.offsetLeft; |
| 85 style.width = "300px"; | 85 style.width = "300px"; |
| 86 target.offsetLeft; | 86 target.offsetLeft; |
| 87 style.width = "290px"; | 87 style.width = "290px"; |
| 88 target.offsetLeft; | 88 target.offsetLeft; |
| 89 | 89 |
| 90 style.display = "none"; | 90 style.display = "none"; |
| 91 } | 91 } |
| 92 | 92 |
| 93 PerfTestRunner.measureRunsPerSecond({ run: test }); | 93 PerfTestRunner.measureRunsPerSecond({ |
| 94 description: "Measures performance of 3 layouts (using 2 different f
ont-sizes) on a page containing English text.", |
| 95 run: test |
| 96 }); |
| 94 </script> | 97 </script> |
| 95 </body> | 98 </body> |
| 96 </html> | 99 </html> |
| OLD | NEW |