aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/button/performance.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-05-15 10:45:13 -0400
committerScott González <scott.gonzalez@gmail.com>2012-05-15 10:45:13 -0400
commit1f2469234b15d79d97c692ed97a5eaeb67c7b697 (patch)
treeb067cfe87c31d895b9a807394dd714560ee5bdb8 /tests/visual/button/performance.html
parent86569d8ebceec4b4c173d5fd635b968796f0361b (diff)
downloadjquery-ui-1f2469234b15d79d97c692ed97a5eaeb67c7b697.tar.gz
jquery-ui-1f2469234b15d79d97c692ed97a5eaeb67c7b697.zip
Visual tests: Cleanup.
Diffstat (limited to 'tests/visual/button/performance.html')
-rw-r--r--tests/visual/button/performance.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/visual/button/performance.html b/tests/visual/button/performance.html
new file mode 100644
index 000000000..1d1884bc2
--- /dev/null
+++ b/tests/visual/button/performance.html
@@ -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.7.2.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>