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:
crschmidt
2009-03-06 17:42:41 +00:00
parent c2d47cf46f
commit fff6be4920

View 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>