r3406 committed - autocomplete: table-visual test, doesn't help to reproduce issue menti...

r3406 committed - autocomplete: table-visual test, doesn't help to reproduce issue menti...


Revision: 3406
Author: joern.zaefferer
Date: Thu Nov 5 10:50:59 2009
Log: autocomplete: table-visual test, doesn't help to reproduce issue
mentioned on wiki
http://code.google.com/p/jquery-ui/source/detail?r=3406
Added:
/branches/dev/tests/visual/autocomplete/table.html
=======================================
--- /dev/null
+++ /branches/dev/tests/visual/autocomplete/table.html    Thu Nov 5 10:50:59
2009
@@ -0,0 +1,63 @@
+<!doctype html>
+<html>
+<head>
+    <title>Autocomplete Visual Test: Default</title>
+    <link rel="stylesheet" href="../static.css" type="text/css" />
+    <link rel="stylesheet" href="../../../themes/base/ui.base.css"
type="text/css" />
+    <link rel="stylesheet" href="../../../themes/base/ui.theme.css"
type="text/css" title="ui-theme" />
+    <script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
+    <script type="text/javascript"
src="../../../ui/jquery.ui.core.js"></script>
+    <script type="text/javascript"
src="../../../ui/jquery.ui.position.js"></script>
+    <script type="text/javascript"
src="../../../ui/jquery.ui.menu.js"></script>
+    <script type="text/javascript"
src="../../../ui/jquery.ui.autocomplete.js"></script>
+    <script type="text/javascript">
+    $(function() {
+        $("input").autocomplete({
+            source:
["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby", "python", "c", "scala", "groovy", "haskell", "pearl"],
+            delay: 0
+        });
+    });
+    </script>
+    <style>body { font-size:62.5%; }</style>
+</head>
+<body>
+
+content before<br/>
+content before<br/>
+content before<br/>
+content before<br/>
+
+<table>
+    <tr>
+        <th>Label</th>
+        <th>Value</th>
+    </tr>
+    <tr>
+        <td>Label</td>
+        <td><input /></td>
+    </tr>
+    <tr>
+        <td>Another Label</td>
+        <td><input /></td>
+    </tr>
+    <tr>
+        <td>more rows</td>
+        <td>more rows</td>
+    </tr>
+    <tr>
+        <td>more rows</td>
+        <td>more rows</td>
+    </tr>
+    <tr>
+        <td>more rows</td>
+        <td>more rows</td>
+    </tr>
+</table>
+
+content after<br/>
+content after<br/>
+content after<br/>
+content after<br/>
+
+</body>
+</html>