- test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6621
Blank page in Safari; http://www.capitalone.co.uk/web/MenuUrl?z=null&c=null% (Works in Firefox & IE)
The problem itself was fixed by Anders in bug 8808 (WebCore should handle text files).
* http/tests/misc/resources: Added.
* http/tests/misc/resources/200.html: Added.
* http/tests/misc/resources/text-refresh.pl: Added.
* http/tests/misc/text-refresh-expected.txt: Added.
* http/tests/misc/text-refresh.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@14285
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-05-10 Alexey Proskuryakov <ap@nypop.com>
+
+ Reviewed by Anders.
+
+ - test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6621
+ Blank page in Safari; http://www.capitalone.co.uk/web/MenuUrl?z=null&c=null% (Works in Firefox & IE)
+
+ The problem itself was fixed by Anders in bug 8808 (WebCore should handle text files).
+
+ * http/tests/misc/resources: Added.
+ * http/tests/misc/resources/200.html: Added.
+ * http/tests/misc/resources/text-refresh.pl: Added.
+ * http/tests/misc/text-refresh-expected.txt: Added.
+ * http/tests/misc/text-refresh.html: Added.
+
2006-05-09 Darin Adler <darin@apple.com>
- test for http://bugzilla.opendarwin.org/show_bug.cgi?id=8781
--- /dev/null
+<head>
+<script>
+if (window.layoutTestController)
+ layoutTestController.notifyDone();
+</script>
+</head>
+<body>
+SUCCESS
+</body>
--- /dev/null
+#!/usr/bin/perl
+# Simple script to generate a redirect to a success document.
+
+print "Content-type: text/plain\r\n";
+print "Refresh: 0; URL=200.html\r\n";
+print "\r\n";
+
+print "FAILURE\r\n";
--- /dev/null
+<head>
+<script>
+if (window.layoutTestController) {
+ layoutTestController.waitUntilDone();
+ layoutTestController.dumpAsText();
+}
+</script>
+<meta http-equiv="refresh" content="0; URL=resources/text-refresh.pl">
+</head>
+<body>
+FAILURE (couldn't even start to test)
+<!-- http://bugzilla.opendarwin.org/show_bug.cgi?id=6621 -->
+</body>