Index: tests/standalone/io/http_body_test.dart |
diff --git a/tests/standalone/io/http_body_test.dart b/tests/standalone/io/http_body_test.dart |
index 419e3810791f30a32b6b0165ea94151f7fa6aeaa..2f5231b911a70e14ba290d13cbbaffa7af0339ae 100644 |
--- a/tests/standalone/io/http_body_test.dart |
+++ b/tests/standalone/io/http_body_test.dart |
@@ -255,7 +255,22 @@ File content\r |
test('application/x-www-form-urlencoded', |
'a=%F8+%26%23548%3B'.codeUnits, |
- { 'a' : '\u{FFFD}Ȥ' }, |
+ { 'a' : '\u{FFFD} Ȥ' }, |
+ "form"); |
+ |
+ test('application/x-www-form-urlencoded', |
+ 'a=%C0%A0'.codeUnits, |
+ { 'a' : '\u{FFFD}' }, |
+ "form"); |
+ |
+ test('application/x-www-form-urlencoded', |
+ 'a=x%A0x'.codeUnits, |
+ { 'a' : 'x\u{FFFD}x' }, |
+ "form"); |
+ |
+ test('application/x-www-form-urlencoded', |
+ 'a=x%C0x'.codeUnits, |
+ { 'a' : 'x\u{FFFD}x' }, |
"form"); |
test('application/x-www-form-urlencoded', |