2012-05-15 14:45:13 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Button Visual Test: Initialization Performance</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../../themes/base/all.css">
|
2014-06-10 11:55:45 +00:00
|
|
|
<script src="../../../external/jquery/jquery.js"></script>
|
2013-12-02 18:36:12 +00:00
|
|
|
<script src="../../../ui/core.js"></script>
|
|
|
|
<script src="../../../ui/widget.js"></script>
|
|
|
|
<script src="../../../ui/button.js"></script>
|
2012-05-15 14:45:13 +00:00
|
|
|
<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>
|