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

Side by Side Diff: LayoutTests/http/tests/xmlhttprequest/basic-auth-nopassword.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>Tests for XMLHttpRequest authentication with only username or password set
4 <script>
5 if (window.testRunner) {
6 if (window.testRunner.setHandlesAuthenticationChallenges && window.testR unner.setAuthenticationUsername) {
7 testRunner.setHandlesAuthenticationChallenges(true);
8 testRunner.setAuthenticationUsername("user");
9 }
10 testRunner.dumpAsText();
11 testRunner.queueLoad("http://user:@localhost:8000/xmlhttprequest/resourc es/basic-auth-nouserpass/basic-auth-nouserpass.php");
12 }
13
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698