summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/http/basic-auth-cache-test.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/http/basic-auth-cache-test.html')
-rw-r--r--testing/web-platform/tests/http/basic-auth-cache-test.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/testing/web-platform/tests/http/basic-auth-cache-test.html b/testing/web-platform/tests/http/basic-auth-cache-test.html
deleted file mode 100644
index 0d3895b80..000000000
--- a/testing/web-platform/tests/http/basic-auth-cache-test.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!doctype html>
-<html id="doc" class="reftest-wait">
- <meta charset="utf-8">
- <link rel="match" href="basic-auth-cache-test-ref.html">
-
- <img id="auth" onload="loadNoAuth()">
- <img id="noauth" onload="removeWait()">
-
-
- <script type="text/javascript">
- function loadAuth() {
- var authUrl = 'http://testuser:testpass@' + window.location.host + '/http/resources/securedimage.py';
- document.getElementById('auth').src = authUrl;
- }
-
- function loadNoAuth() {
- var noAuthUrl = 'http://' + window.location.host + '/http/resources/securedimage.py';
- document.getElementById('noauth').src = noAuthUrl;
- }
-
- function removeWait() {
- document.getElementById('doc').className = "";
- }
-
- window.onload = loadAuth;
- </script>
-</html>