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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 <p>This tests that the default Content-Type for XMLHttpRequest is application/x- www-form-urlencoded when running in the Dashboard compatibility mode.</p>
4 <script>
5 if (window.testRunner) {
6 testRunner.setUseDashboardCompatibilityMode(true);
7 testRunner.dumpAsText();
8 }
9
10 objXmlHttp = new XMLHttpRequest;
11 objXmlHttp.open("POST", "print-content-type.cgi", false);
12 objXmlHttp.send("");
13 document.write("<pre>" + objXmlHttp.responseText + "</pre>");
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698