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