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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_local_window_open_second.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/resources/storage_local_window_open_second.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_local_window_open_second.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_local_window_open_second.html
deleted file mode 100644
index 3c8405adcf0575a6cf9dea6038a5c12d95120332..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_local_window_open_second.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<title>WebStorage Test: localStorage - second page</title>
-</head>
-<body>
-<script>
-
-var storage = window.localStorage;
-
-var assertions = [];
-
-assertions.push({
- actual: storage.getItem("FOO"),
- expected: "BAR",
- message: "storage.getItem('FOO')"
-});
-
-storage.setItem("FOO", "BAR-NEWWINDOW");
-
-assertions.push({
- actual: storage.getItem("FOO"),
- expected: "BAR-NEWWINDOW",
- message: "value for FOO after changing"
-});
-assertions.push({
- actual: window.opener.localStorage.getItem("FOO"),
- expected: "BAR-NEWWINDOW",
- message: "value for FOO in my opening window"
-});
-
-window.opener.postMessage(assertions, '*');
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698