diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-21 21:07:25 +0100 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-03-21 21:07:25 +0100 |
commit | f5a14de1b1315140eaf04a8056107cc95732922f (patch) | |
tree | b74379ac9f4cab5561f86fc867edd7f8ad88c992 /tests/visual/progressbar | |
parent | d29f819269a6271b8c2f6af89c5ede4cbae99b89 (diff) | |
download | jquery-ui-f5a14de1b1315140eaf04a8056107cc95732922f.tar.gz jquery-ui-f5a14de1b1315140eaf04a8056107cc95732922f.zip |
Cleaning up visual tests
Fixes #5395 - Visual Tests Cleanup
Diffstat (limited to 'tests/visual/progressbar')
-rw-r--r-- | tests/visual/progressbar/default.html | 31 | ||||
-rw-r--r-- | tests/visual/progressbar/progressbar.html | 2 |
2 files changed, 1 insertions, 32 deletions
diff --git a/tests/visual/progressbar/default.html b/tests/visual/progressbar/default.html deleted file mode 100644 index f18cc1434..000000000 --- a/tests/visual/progressbar/default.html +++ /dev/null @@ -1,31 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <meta charset="UTF-8" /> - <title>Progressbar Visual Test : Default</title> - <link rel="stylesheet" href="../visual.css" type="text/css" /> - <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" /> - <script type="text/javascript" src="../../../jquery-1.4.2.js"></script> - <script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script> - <script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script> - <script type="text/javascript" src="../../../ui/jquery.ui.progressbar.js"></script> - <script type="text/javascript"> - $(function() { - var bars = $("#progressbar1, #progressbar2, #progressbar3").progressbar(); - - $("#progress").keyup(function() { - bars.progressbar("value", +this.value); - }).keyup(); - }); - </script> -</head> -<body> - -<div id="progressbar1"></div> -<div id="progressbar2" style="width:300px"></div> -<div id="progressbar3" style="width:100px"></div> - -<input id="progress" value="10" /> - -</body> -</html> diff --git a/tests/visual/progressbar/progressbar.html b/tests/visual/progressbar/progressbar.html index 167272512..44cd47e02 100644 --- a/tests/visual/progressbar/progressbar.html +++ b/tests/visual/progressbar/progressbar.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="UTF-8" /> - <title>Simple Progressbar</title> + <title>Progressbar Visual Test: Default</title> <link rel="stylesheet" href="../all.css" type="text/css" /> <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" /> <script type="text/javascript" src="../../../jquery-1.4.2.js"></script> |