imported the whole jquery-ui package, refreshed with 1.10.2
[unfold.git] / third-party / jquery-ui-1.10.2 / tests / visual / button / performance.html
diff --git a/third-party/jquery-ui-1.10.2/tests/visual/button/performance.html b/third-party/jquery-ui-1.10.2/tests/visual/button/performance.html
new file mode 100644 (file)
index 0000000..4d0d4fe
--- /dev/null
@@ -0,0 +1,26 @@
+<!doctype html>
+<html lang="en">
+<head>
+       <meta charset="utf-8">
+       <title>Button Visual Test: Initialization Performance</title>
+       <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css">
+       <script src="../../../jquery-1.9.1.js"></script>
+       <script src="../../../ui/jquery.ui.core.js"></script>
+       <script src="../../../ui/jquery.ui.widget.js"></script>
+       <script src="../../../ui/jquery.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>