diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-22 19:29:03 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-22 19:29:03 +0000 |
commit | 0472ff10bbd12648b57905d0833fb6e572853dd5 (patch) | |
tree | 5f348736928a7347dbe8c14ddc26e2795b04ae9d /tests/testsuite.js | |
parent | f389497e48c1f8d4024f479364a8b5cba8f8a88d (diff) | |
download | jquery-ui-0472ff10bbd12648b57905d0833fb6e572853dd5.tar.gz jquery-ui-0472ff10bbd12648b57905d0833fb6e572853dd5.zip |
tests: formatting and cleanup for consistency
Diffstat (limited to 'tests/testsuite.js')
-rw-r--r-- | tests/testsuite.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/testsuite.js b/tests/testsuite.js new file mode 100644 index 000000000..5ae100a7d --- /dev/null +++ b/tests/testsuite.js @@ -0,0 +1,10 @@ +$(function() {
+
+$('body').prepend(
+ '<h1 id="header">' + document.title + '</h1>' +
+ '<h2 id="banner"></h2>' +
+ '<h2 id="userAgent"></h2>' +
+ '<ol id="tests"></ol>'
+);
+
+});
|