diff --git a/test/index.html b/test/index.html
index aef719de5..33191f53c 100644
--- a/test/index.html
+++ b/test/index.html
@@ -1,326 +1,330 @@
-
- Testing mousewheel plugin
+
+ Testing mousewheel plugin
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- jQuery mousewheel.js - Test
-
-
-
- - Test1 is just using the plain on mousewheel() with a function passed in and does not prevent default. (Also logs the value of pageX and pageY event properties.)
- - Test2 should prevent the default action.
- - Test3 should only log a mouseover and mouseout event. Testing unmousewheel().
- - Test4 has two handlers.
- - Test5 is like Test2 but has children. The children should not scroll until mousing over them.
- - Test6 is like Test5 but should not scroll children or parents.
- - Test7 is like Test6 but has no children. It will propagate the event and scroll test 6 as well.
-
-
-
-
-
-
-
-
-
-
-
-
-
+ #test2 {
+ background-color: #333;
+ width: 120px;
+ height: 100px;
+ color: #fff;
+ float: left;
+ }
+
+ #test3 {
+ background-color: #666;
+ width: 120px;
+ height: 100px;
+ color: #fff;
+ float: left;
+ }
+
+ #test4 {
+ background-color: #000;
+ width: 120px;
+ height: 100px;
+ color: #fff;
+ float: left;
+ }
+
+ #test5 {
+ background-color: #333;
+ padding: 5px;
+ width: 400px;
+ height: 400px;
+ color: #fff;
+ float: left;
+ }
+
+ #test6 {
+ background-color: #666;
+ padding: 5px;
+ width: 250px;
+ height: 250px;
+ color: #fff;
+ float: left;
+ }
+
+ #test7 {
+ background-color: #000;
+ padding: 5px;
+ width: 100px;
+ height: 100px;
+ color: #fff;
+ float: left;
+ }
+
+ #forceScroll {
+ clear: both;
+ height: 1000px;
+ }
+
+ #logger {
+ position: absolute;
+ top: 395px;
+ left: 12px;
+ width: 460px;
+ height: 290px;
+ overflow: auto;
+ }
+
+ #logger p {
+ font-family: Arial, sans-serif;
+ font-size: 13px;
+ padding: 2px;
+ border-bottom: 1px solid #ccc;
+ margin: 0;
+ }
+
+ #logger p:nth-child(even) {
+ background-color: #FFFFE8;
+ }
+
+ #logger p:nth-child(10n) {
+ border-bottom-color: #000;
+ }
+
+
+
+
+ jQuery mousewheel.js - Test
+
+
+
+ - Test1 is just using the plain on mousewheel() with a function passed in and does not prevent default. (Also logs the value of pageX and pageY event properties.)
+ - Test2 should prevent the default action.
+ - Test3 should only log a mouseover and mouseout event. Testing unmousewheel().
+ - Test4 has two handlers.
+ - Test5 is like Test2 but has children. The children should not scroll until mousing over them.
+ - Test6 is like Test5 but should not scroll children or parents.
+ - Test7 is like Test6 but has no children. It will propagate the event and scroll test 6 as well.
+
+
+
+
+
+
+
+
+
+
+
+
+