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

Unified Diff: ManualTests/blackberry/head-xhr-nonexistant-file.html

Issue 780003004: Cleanup: Remove notification test from blackberry. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: g rm -rf ManualTests/blackberry Created 6 years 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
« no previous file with comments | « ManualTests/blackberry/clear-localstorage.html ('k') | ManualTests/blackberry/http-auth-challenge.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/blackberry/head-xhr-nonexistant-file.html
diff --git a/ManualTests/blackberry/head-xhr-nonexistant-file.html b/ManualTests/blackberry/head-xhr-nonexistant-file.html
deleted file mode 100644
index 882b6cc9d901aa8531f3a3ea01299f942afd1865..0000000000000000000000000000000000000000
--- a/ManualTests/blackberry/head-xhr-nonexistant-file.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<html>
-<head>
-<script>
-var xhr = new XMLHttpRequest();
-xhr.open("HEAD", "nothing.txt", true);
-xhr.onreadystatechange = function() {
- if (xhr.readyState != 4) {
- return;
- }
- if (xhr.status == 404) {
- alert("PASSED: onreadystatechange fired with status 404");
- } else {
- alert("FAILED: onreadystatechange fired with status " + xhr.status);
- }
-
-}
-xhr.onerror = function() {
- alert("FAILED: onerror fired");
-}
-xhr.send();
-</script>
-</head>
-<body>
-<p>This test must be hosted on a web server, not run from a file url, because XMLHttpRequest from file url causes a security error.</p>
-<p>You should see an alert box saying whether the test was passed or failed. If there is no alert box, the test was FAILED.</p>
-</body>
-</html>
« no previous file with comments | « ManualTests/blackberry/clear-localstorage.html ('k') | ManualTests/blackberry/http-auth-challenge.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698