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

Unified Diff: ManualTests/blackberry/clear-localstorage.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
Index: ManualTests/blackberry/clear-localstorage.html
diff --git a/ManualTests/blackberry/clear-localstorage.html b/ManualTests/blackberry/clear-localstorage.html
deleted file mode 100644
index 92e85f472e9125f819d238f6a6b718d8bce88eed..0000000000000000000000000000000000000000
--- a/ManualTests/blackberry/clear-localstorage.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
- <body>
- <p>This test case is used to test the function of clear local storage by clicking "Clear Local Storage" button
- from Settings -> Privacy & Security. This is for <a href="https://bugs.webkit.org/show_bug.cgi?id=83253">https://bugs.webkit.org/show_bug.cgi?id=83253</a></p>
- <div>
- <script type="text/javascript">
- if (!sessionStorage.getItem("key")) {
- // initialize test case
- document.write("Status: <span style='color:yellow'>Initial</span>");
- sessionStorage.setItem("key", "value");
- localStorage.setItem("key", "value");
-
- // notify to clear the local storage and refresh the page.
- document.write("<p>Please clear the local storage from Settings -> Privacy & Security by pressing \"Clear Local Storage\" button, then reload this page to see the result.</p>");
- } else {
- document.write("Result: ");
- if (!localStorage.getItem("key")) {
- // success
- document.write("<span style='color:green'>PASS</span>");
- } else {
- // fail
- document.write("<span style='color:red'>FAIL</span>");
- }
- document.write("<p>If you want to run this test case again, please restart the browser.</p>");
- }
- </script>
- </div>
- </body>
-</html>
« no previous file with comments | « ManualTests/blackberry/clear-cookie-refresh-result.php ('k') | ManualTests/blackberry/head-xhr-nonexistant-file.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698