summaryrefslogtreecommitdiffstats
path: root/apps/it/static/js/ui/tests/visual/button/performance.html
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/static/js/ui/tests/visual/button/performance.html')
-rw-r--r--apps/it/static/js/ui/tests/visual/button/performance.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/it/static/js/ui/tests/visual/button/performance.html b/apps/it/static/js/ui/tests/visual/button/performance.html
deleted file mode 100644
index ac1b665..0000000
--- a/apps/it/static/js/ui/tests/visual/button/performance.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!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.10.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>