diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-09-16 01:48:03 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-08 14:02:57 -0400 |
commit | 197061be5645fd3e9b521e63ecbd13630612d8c7 (patch) | |
tree | 861f044d084b49909db44b114be279ebfd6c9387 /tests/visual/button/performance.html | |
parent | c5d6ea4baae74f54ab5f44239e9239a61a5f0ce9 (diff) | |
download | jquery-ui-197061be5645fd3e9b521e63ecbd13630612d8c7.tar.gz jquery-ui-197061be5645fd3e9b521e63ecbd13630612d8c7.zip |
Button: address review comments
Diffstat (limited to 'tests/visual/button/performance.html')
-rw-r--r-- | tests/visual/button/performance.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/visual/button/performance.html b/tests/visual/button/performance.html deleted file mode 100644 index 0d807d167..000000000 --- a/tests/visual/button/performance.html +++ /dev/null @@ -1,21 +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/all.css"> - <script src="../../../external/requirejs/require.js"></script> - <script src="../../../demos/bootstrap.js"> - 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> |