diff options
author | Richard Worth <rdworth@gmail.com> | 2010-02-25 11:09:39 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2010-02-25 11:09:39 +0000 |
commit | 9483dcdbe61f33e2cc5ea0c56297f254a82990b8 (patch) | |
tree | 66016c8591af13a8010f3517e7350c153f2887cd /tests/static | |
parent | 1fd3e6bd0b2bbb06cb4135506e039aad84d15d62 (diff) | |
download | jquery-ui-9483dcdbe61f33e2cc5ea0c56297f254a82990b8.tar.gz jquery-ui-9483dcdbe61f33e2cc5ea0c56297f254a82990b8.zip |
Externals: updated QUnit to http://github.com/jquery/qunit commit 67ba5a338d836014c24345dc218ab3c9bb63b06e
The various updates to the unit test suites introduced 0 regressions due to update of QUnit, however the addition of jquery.ui.dialog.css to the dialog test suite did introduce one regression, to the dialog option height tests.
Also removed some old crufty woefully incomplete unused and rotted test harnesses.
Diffstat (limited to 'tests/static')
-rw-r--r-- | tests/static/all.html | 39 | ||||
-rw-r--r-- | tests/static/index.html | 6 |
2 files changed, 5 insertions, 40 deletions
diff --git a/tests/static/all.html b/tests/static/all.html deleted file mode 100644 index cca97f64b..000000000 --- a/tests/static/all.html +++ /dev/null @@ -1,39 +0,0 @@ -<!doctype html> -<html> -<head> - <title>jQuery UI Static Markup Test Page</title> - <link rel="stylesheet" href="../../themes/base/jquery.ui.base.css" type="text/css" /> - <link rel="stylesheet" href="../../themes/base/jquery.ui.theme.css" type="text/css" title="ui-theme" /> - <script type="text/javascript" src="../../jquery-1.4.2.js"></script> - <script type="text/javascript" src="static.js"></script> - <style type="text/css"> - dd.plugin { margin-top: 0.3em; margin-bottom: 1em; } - </style> -</head> -<body style="font-size: 62.5%;"> - -<dl id="plugins"> - -</dl> - -<script type="text/javascript"> - -var plugins = $("#plugins"); - -$("accordion datepicker dialog progressbar slider tabs".split(" ")).each(function() { - - var pluginName = this; - var url = pluginName + '/' + pluginName + ".html"; - - $('<dt><a href="' + url + '">' + url + '</a></dt>').appendTo(plugins); - $('<dd class="plugin"></dd>').load(url, function() { - var plugin = $(this).find(".ui-" + pluginName).remove(); - $(this).empty().append(plugin); - }).appendTo(plugins); - -}); - -</script> - -</body> -</html> diff --git a/tests/static/index.html b/tests/static/index.html index e33645d1b..5baf14368 100644 --- a/tests/static/index.html +++ b/tests/static/index.html @@ -1,7 +1,7 @@ <!doctype html> <html lang="en"> <head> - <title>Static Tests</title> + <title>jQuery UI Static Tests</title> <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"> @@ -12,6 +12,8 @@ </head> <body> + +<h1>jQuery UI Static Tests</h1> <h2>Interactions</h2> <ul> @@ -25,6 +27,8 @@ <h2>Widgets</h2> <ul> <li><a href="accordion/default.html">Accordion</a></li> + <li><a href="autocomplete/default.html">Autocomplete</a></li> + <li><a href="button/default.html">Button</a></li> <li><a href="datepicker/default.html">Datepicker</a></li> <li><a href="dialog/default.html">Dialog</a></li> <li><a href="progressbar/default.html">Progressbar</a></li> |