aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/button/performance.html
blob: ba90965a95ef608c789f771b8cf2bbb3315ea445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>Button Visual Test: Initialization Performance</title>
	<link rel="stylesheet" href="../../../themes/base/all.css">
	<script src="../../../external/jquery/jquery.js"></script>
	<script src="../../../ui/core.js"></script>
	<script src="../../../ui/widget.js"></script>
	<script src="../../../ui/button.js"></script>
	<script>
	$(function() {
		var start,
			html = new Array( 500 ).join( "<button>button</button>" );
		$( html ).appendTo( "body" );

		start = $.now();
		$( "button" ).button();
		$( "<p>" ).text( "Time to initialize: " + ($.now() - start)  + "ms" ).prependTo( "body" );
	});
	</script>
</head>
<body>

</body>
</html>