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

Unified Diff: LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html
diff --git a/LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html b/LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html
deleted file mode 100644
index 6cdc2aee52038b7483e175c8a9848a6e9688eeb6..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/xmlhttprequest/default-content-type-dashboard.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-<body>
-<p>This tests that the default Content-Type for XMLHttpRequest is application/x-www-form-urlencoded when running in the Dashboard compatibility mode.</p>
-<script>
- if (window.testRunner) {
- testRunner.setUseDashboardCompatibilityMode(true);
- testRunner.dumpAsText();
- }
-
- objXmlHttp = new XMLHttpRequest;
- objXmlHttp.open("POST", "print-content-type.cgi", false);
- objXmlHttp.send("");
- document.write("<pre>" + objXmlHttp.responseText + "</pre>");
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698