r3405 committed - autocomplete: remove .focus() calls from visual tests

r3405 committed - autocomplete: remove .focus() calls from visual tests


Revision: 3405
Author: joern.zaefferer
Date: Thu Nov 5 10:46:03 2009
Log: autocomplete: remove .focus() calls from visual tests
http://code.google.com/p/jquery-ui/source/detail?r=3405
Modified:
/branches/dev/tests/visual/autocomplete/combobox.html
/branches/dev/tests/visual/autocomplete/default.html
/branches/dev/tests/visual/autocomplete/remote-jsonp.html
/branches/dev/tests/visual/autocomplete/remote.html
=======================================
--- /branches/dev/tests/visual/autocomplete/combobox.html    Mon Nov 2
11:55:35 2009
+++ /branches/dev/tests/visual/autocomplete/combobox.html    Thu Nov 5
10:46:03 2009
@@ -95,7 +95,7 @@
                log("Selected " + ui.item.text() + "(#" + ui.item.val() + ")" );
            }
        });
-        $("input").focus();
+        $("input");
    });
    </script>
    <style>
=======================================
--- /branches/dev/tests/visual/autocomplete/default.html    Wed Oct 21
00:38:50 2009
+++ /branches/dev/tests/visual/autocomplete/default.html    Thu Nov 5
10:46:03 2009
@@ -42,7 +42,7 @@
            change: function(event, ui) {
                log(ui.item ? ("Selected: " + ui.item.result) : "Nothing selected,
input was " + this.value);
            }
-        }).focus();
+        });
    });
    </script>
    <style>body { font-size:62.5%; }</style>
=======================================
--- /branches/dev/tests/visual/autocomplete/remote-jsonp.html    Fri Oct 23
09:16:15 2009
+++ /branches/dev/tests/visual/autocomplete/remote-jsonp.html    Thu Nov 5
10:46:03 2009
@@ -49,7 +49,7 @@
            change: function(event, ui) {
                log(ui.item ? ("Selected: " + ui.item.label) : "Nothing selected,
input was " + this.value);
            }
-        }).focus();
+        });
    });
    </script>
    <style>
=======================================
--- /branches/dev/tests/visual/autocomplete/remote.html    Fri Oct 23 09:16:15
2009
+++ /branches/dev/tests/visual/autocomplete/remote.html    Thu Nov 5 10:46:03
2009
@@ -42,7 +42,7 @@
            change: function(event, ui) {
                log(ui.item ? ("Selected: " + ui.item.result + " aka " +
ui.item.id) : "Nothing selected, input was " + this.value);
            }
-        }).focus();
+        });
    });
    </script>
    <style>body { font-size:62.5%; }</style>