aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual
diff options
context:
space:
mode:
Diffstat (limited to 'tests/visual')
-rw-r--r--tests/visual/button/button_performance.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/visual/button/button_performance.html b/tests/visual/button/button_performance.html
index 8b8ca2730..2785580a9 100644
--- a/tests/visual/button/button_performance.html
+++ b/tests/visual/button/button_performance.html
@@ -19,7 +19,7 @@
var start = +new Date();
$("button").button();
var end = +new Date();
- alert( "Time to initialize: " + (end - start) + "ms" );
+ $("<p></p>").text( "Time to initialize: " + (end - start) + "ms" ).prependTo("body");
});
</script>
</head>