summaryrefslogtreecommitdiffstats
path: root/toolkit/components/windowwatcher/test/file_storage_copied.html
blob: e32709315a9fa839dc3a84c525796f52474d9bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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>