Files
UXP-Fixed/embedding/components/windowwatcher/test/file_storage_copied.html
T
2018-02-02 04:16:08 -05:00

13 lines
314 B
HTML

<!DOCTYPE HTML>
<html>
<!--
This page is opened in a new window by test_storage_copied.html.
We need to return the sessionStorage value for the item "test-item",
by way of postMessage.
-->
<head>
<body>Opened!</body>
<script>
window.postMessage(window.sessionStorage.getItem("test-item"), "*");
</script>
</html>