Index: tests/formatting/EscUrl.php
===================================================================
--- tests/formatting/EscUrl.php	(revision 1183)
+++ tests/formatting/EscUrl.php	(working copy)
@@ -35,6 +35,11 @@
 		$this->assertEquals('', esc_url('nasty://example.com/'));
 	}
 
+	function test_protocol_case() {
+		$this->assertEquals('http://example.com', esc_url('HTTP://example.com'));
+		$this->assertEquals('http://example.com', esc_url('Http://example.com'));
+	}
+
 	function test_display_extras() {
 		$this->assertEquals('http://example.com/&#039;quoted&#039;', esc_url('http://example.com/\'quoted\''));
 		$this->assertEquals('http://example.com/\'quoted\'', esc_url('http://example.com/\'quoted\'',null,'notdisplay'));
