| 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>
|
|
|