Add a string format speed test
git-svn-id: http://svn.openlayers.org/trunk/openlayers@8957 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
29
tests/speed/string_format.html
Normal file
29
tests/speed/string_format.html
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<script src="../../lib/OpenLayers.js"></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
function stringformat() {
|
||||||
|
var string = OpenLayers.String.format("${abc} 123 ${def}", {'abc': 456, 'def': 789})
|
||||||
|
}
|
||||||
|
function run(x) {
|
||||||
|
var date = new Date();
|
||||||
|
for (var i = 0; i < x; i++) {
|
||||||
|
stringformat();
|
||||||
|
}
|
||||||
|
var elapsed = (new Date() - date);
|
||||||
|
return elapsed;
|
||||||
|
}
|
||||||
|
|
||||||
|
function show_time(x)
|
||||||
|
{
|
||||||
|
var t = run(x);
|
||||||
|
document.getElementById("out").innerHTML = t + "ms for " + x + " runs";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a onclick="javascript:show_time(100000); return false" href="#">Run</a>
|
||||||
|
<div id="out"></div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user