Index: tika-core/src/test/java/org/apache/tika/mime/MimeDetectionTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/mime/MimeDetectionTest.java	(revision 1498677)
+++ tika-core/src/test/java/org/apache/tika/mime/MimeDetectionTest.java	(working copy)
@@ -61,7 +61,7 @@
                 "http://www.w3.org/2002/07/owl#",
                 "test-difficult-rdf2.xml");
         // add evil test from TIKA-327
-        testUrlOnly("text/html", "http://www.nheri.org");
+        testFile("text/html", "test-tika-327.html");
         // add another evil html test from TIKA-357
         testFile("text/html", "testlargerbuffer.html");
         // test fragment of HTML with <div> (TIKA-1102)
@@ -114,11 +114,6 @@
                 MediaType.APPLICATION_ZIP));
     }
 
-    private void testUrlOnly(String expected, String url) throws IOException{
-	InputStream in = new URL(url).openStream();
-        testStream(expected, url, in);
-    }
-
     private void testUrl(String expected, String url, String file) throws IOException{
         InputStream in = getClass().getResourceAsStream(file);
         testStream(expected, url, in);
Index: tika-core/src/test/resources/org/apache/tika/mime/test-tika-327.html
===================================================================
--- tika-core/src/test/resources/org/apache/tika/mime/test-tika-327.html	(revision 0)
+++ tika-core/src/test/resources/org/apache/tika/mime/test-tika-327.html	(revision 0)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="iso-8859-1"?><link href="http://www.apache.org" rel="stylesheet" type="text/css" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<title>title</title>
+<meta name="description" content="content" />
+<meta name="keywords" content="keys" />
+<script language="JavaScript" type="text/javascript">
+<!--
+function hello() {
+}
+//-->
+
+
+</script>
+
+<!-- IE fix -->
+<style type="text/css">form { display: inline }</style>
+<!--
+comment
+-->
+</head>
+
+<body>
+<table>
+  <tr>
+    <td> 
+	<table>
+        <tr>
+          <td><font class="title"><!--comment--><a href="index.php">image</a></font></td>
+          <td> <table>
+              <tr>
+                <td>
+                                  </td>
+              </tr>
+         </table></td>
+
+
+
+        </tr>
+        <tr>
+          <td>
+            <span class="class">Home </span>            </span>
+          </td>
+          <td>
+            July 2, 2013           </td>
+        </tr>
+      </table></td>
+  </tr>
+</table>
+end of table
+</body>
\ No newline at end of file
