| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_session_window_open_second.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_session_window_open_second.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_session_window_open_second.html
|
| deleted file mode 100644
|
| index bc134af32b1e5b5063add18db0c044ed85f37be4..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/resources/storage_session_window_open_second.html
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -<!DOCTYPE HTML>
|
| -<html>
|
| -<head>
|
| -<title>WebStorage Test: sessionStorage - second page</title>
|
| -</head>
|
| -<body>
|
| -<script>
|
| -
|
| -var storage = window.sessionStorage;
|
| -
|
| -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.sessionStorage.getItem("FOO"),
|
| - expected: "BAR",
|
| - message: "value for FOO in my opening window"
|
| -});
|
| -
|
| -window.opener.postMessage(assertions, '*');
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|