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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_storageeventinit.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_storageeventinit.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_storageeventinit.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_storageeventinit.html
deleted file mode 100644
index 7e0ecdd816f1c815d34bd7a5f8833fb126ee815b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/event_session_storageeventinit.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE HTML>
-<html>
- <head>
- <title>WebStorage Test: sessionStorage event - StorageEventInit</title>
- <script src="../../../resources/testharness.js"></script>
- <script src="../../../resources/testharnessreport.js"></script>
- </head>
- <body>
- <h1>event_session_StorageEventInit</h1>
- <div id="log"></div>
- <script>
- async_test(function(t) {
- function onStorageEvent(event) {
- assert_equals(event.key, 'key');
- assert_equals(event.oldValue, 'oldValue');
- assert_equals(event.newValue, 'newValue');
- assert_equals(event.url, window.location.href);
- assert_equals(event.storageArea, window.sessionStorage);
- t.done();
- }
-
- window.addEventListener('storage', t.step_func(onStorageEvent), false);
-
- var event = new StorageEvent('storage', {
- key: 'key',
- oldValue: 'oldValue',
- newValue: 'newValue',
- url: window.location.href,
- storageArea: window.sessionStorage
- });
-
- window.dispatchEvent(event);
- }, "storageeventinit test - Storage event is fired due to set values for StorageEventInit.");
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698