web/test/jstests/test_htmlhelpers.js
changeset 5738 74bd8123fb07
parent 5658 7b9553a9db65
--- a/web/test/jstests/test_htmlhelpers.js	Fri Jun 11 14:59:08 2010 +0200
+++ b/web/test/jstests/test_htmlhelpers.js	Fri Jun 11 16:07:58 2010 +0200
@@ -6,7 +6,7 @@
     			'</select>');
       }
     });
-  
+
     test("test first selected", function() {
         $('#theselect').append('<option value="foo">foo</option>' +
     			     '<option selected="selected" value="bar">bar</option>' +
@@ -15,7 +15,7 @@
         var selected = firstSelected(document.getElementById("theselect"));
         equals(selected.value, 'bar');
     });
-  
+
     test("test first selected 2", function() {
         $('#theselect').append('<option value="foo">foo</option>' +
     			     '<option value="bar">bar</option>' +
@@ -24,7 +24,7 @@
         var selected = firstSelected(document.getElementById("theselect"));
         equals(selected, null);
     });
-  
+
     module("visibilty");
     test('toggleVisibility', function() {
         $('#main').append('<div id="foo"></div>');