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

Unified Diff: LayoutTests/http/tests/appcache/auth.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/appcache/auth.html
diff --git a/LayoutTests/http/tests/appcache/auth.html b/LayoutTests/http/tests/appcache/auth.html
deleted file mode 100644
index e2576266cc2824f0e5ccea1ece84de628ec8495f..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/appcache/auth.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<body>
-<p>Test that appcache works with authentication. Should say SUCCESS:</p>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-// Store authentication credentials.
-var req = new XMLHttpRequest;
-req.open("GET", "resources/auth/setup.php", false, "login", "pasword");
-req.send();
-
-var ifr = document.createElement("iframe");
-ifr.setAttribute("src", "resources/auth/iframe.php");
-document.body.appendChild(ifr);
-
-function success()
-{
- var text = document.createElement("p");
- text.appendChild(document.createTextNode("SUCCESS"));
- document.body.replaceChild(text, document.getElementsByTagName("iframe")[0]);
-
- if (window.testRunner)
- testRunner.notifyDone();
-}
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698