r3469 committed - autocomplete: removing table-visual test, it proved nothing

r3469 committed - autocomplete: removing table-visual test, it proved nothing

Revision: 3469
Author: joern.zaefferer
Date: Wed Nov 18 10:36:54 2009
Log: autocomplete: removing table-visual test, it proved nothing
http://code.google.com/p/jquery-ui/source/detail?r=3469
Deleted:
/branches/dev/tests/visual/autocomplete/table.html
=======================================
--- /branches/dev/tests/visual/autocomplete/table.html    Thu Nov 5 10:50:59
2009
+++ /dev/null
@@ -1,63 +0,0 @@
-<!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>
--