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