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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_removeitem.html

Issue 1979363002: Moved web-platform-tests to wpt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_removeitem.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_removeitem.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_removeitem.html
deleted file mode 100644
index 80093ba5a6c2edbdd623ece91b8270c8ac505510..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_removeitem.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE HTML>
-<meta charset="utf-8">
-<title>Web Storage Test: event - sessionStorage removeItem</title>
-<link rel="author" title="Intel" href="http://www.intel.com">
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-
-<div id="log"></div>
-
-<script>
-
-async_test(function(t) {
- sessionStorage.clear();
- t.add_cleanup(function() { sessionStorage.clear() });
-
- self.step = function(f) { t.step(f); };
-
- var event_index = 0;
- window.addEventListener('storage', t.step_func(function(event) {
- switch(++event_index) {
- case 1:
- assert_equals(event.key, "name", "set key");
- assert_equals(event.oldValue, null, "set oldValue");
- assert_equals(event.newValue, "user1", "set newValue");
- assert_equals(event.url, el.contentDocument.documentURI, "set url");
- assert_equals(event.storageArea, sessionStorage, "set storageArea");
- break;
- case 2:
- assert_equals(event.key, "name", "remove key");
- assert_equals(event.oldValue, "user1", "remove oldValue");
- assert_equals(event.newValue, null, "remove newValue");
- assert_equals(event.url, el.contentDocument.documentURI, "remove url");
- assert_equals(event.storageArea, sessionStorage, "remove storageArea");
- t.done();
- break;
- }
- }), false);
-
- var el = document.createElement("iframe");
- el.setAttribute('id', 'ifrm');
- el.setAttribute('src', 'resources/session_set_item_remove_iframe.html');
- document.body.appendChild(el);
-}, "key property test of session event");
-</script>

Powered by Google App Engine
This is Rietveld 408576698