From: John Resig <jeresig@gmail.com>
Date: Mon, 19 Jan 2009 18:14:51 +0000 (+0000)
Subject: Added a way to run the test suite as an XHTML page.
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=1d513efd3c399800b42902cf920ad83be233276c;p=jquery.git

Added a way to run the test suite as an XHTML page.
---

diff --git a/test/xhtml.php b/test/xhtml.php
new file mode 100644
index 0000000..1d2872e
--- /dev/null
+++ b/test/xhtml.php
@@ -0,0 +1,5 @@
+<?php
+	# Load and run the test suite as a proper XHTML page
+	header("Content-type: application/xhtml+xml");
+	readfile("index.html");
+?>