Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/misc/resources/form-post-textplain.php

Issue 2687863002: Fix enctype=text/plain implementation (Closed)
Patch Set: Fix typo Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/misc/resources/form-post-textplain.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/misc/resources/form-post-textplain.php b/third_party/WebKit/LayoutTests/http/tests/misc/resources/form-post-textplain.php
index 0ccdba3b48f75375d3ab88afb20f0da31609b81e..5252a079ed2d2b1142a5b1387362299c830760bb 100644
--- a/third_party/WebKit/LayoutTests/http/tests/misc/resources/form-post-textplain.php
+++ b/third_party/WebKit/LayoutTests/http/tests/misc/resources/form-post-textplain.php
@@ -21,7 +21,7 @@ if ($content_type == "text/plain") {
$data = file_get_contents("php://input");
-if($data == "f1=This is field #1 &!@$%\r\n='<>\r\nf2=This is field #2 \"\"") {
+if($data == "f1=This is field #1 &!@$%\r\n='<>\r\nf2=This is field #2 \"\"\r\n") {
echo "<p>SUCCESS</p>";
} else {
echo "<p>FAILURE: $data</p>";

Powered by Google App Engine
This is Rietveld 408576698