aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/progressbar/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/visual/progressbar/default.html')
-rw-r--r--tests/visual/progressbar/default.html31
1 files changed, 0 insertions, 31 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>