OLD | NEW |
1 Benchmark Extension | 1 Benchmark Extension |
2 ------------------- | 2 ------------------- |
3 This extension provides basic page-level benchmarking into the browser. | 3 This extension provides basic page-level benchmarking into the browser. |
4 | 4 |
5 With the extension installed you can test web pages and then compare | 5 With the extension installed you can test web pages and then compare |
6 results in a subwindow. | 6 results in a subwindow. |
7 | 7 |
8 Between each page load you can optionally clear idle http connections and | 8 Between each page load you can optionally clear idle http connections and |
9 clear the cache so that page loads are more like the user experience | 9 clear the cache so that page loads are more like the user experience |
10 when first connecting to a site. | 10 when first connecting to a site. |
11 | 11 |
12 To use this benchmark, you'll need to run chrome with the the | 12 To use this benchmark, you'll need to run chrome with the the |
13 "--enable-benchmarking" flag. This flag enables a v8-extension so that | 13 "--enable-benchmarking" flag. This flag enables a v8-extension so that |
14 the benchmark can clear idle connections and the cache. | 14 the benchmark can clear idle connections and the cache. |
15 | 15 |
16 The code found in the jst/ subdirectory is JSTemplate code from | 16 The code found in the jst/ subdirectory is JSTemplate code from |
17 http://code.google.com/p/google-jstemplate/ | 17 http://code.google.com/p/google-jstemplate/. |
18 | 18 |
| 19 In jquery/, jquery-1.4.2.min.js is from http://jquery.com/. jquery.flot.min.js |
| 20 is a plotting library and from http://code.google.com/p/flot/. |
| 21 jquery.flot.dashes.js is an enhancement of Flot for dashed lines and from |
| 22 http://code.google.com/p/flot/issues/detail?id=61. |
| 23 |
| 24 In util/, sortable.js serves for sorting table content and is from |
| 25 http://www.kryogenix.org/code/browser/sorttable/. table2CSV.js is for exporting |
| 26 table data to .csv and from http://www.kunalbabre.com/projects/table2CSV.php. |
| 27 |
OLD | NEW |