blob: 2173e9e6d80c3a93b4d7fa6f3962af934a6df1be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html> <head>
<title></title>
<script type="text/javascript">
function finish() {
window.opener.finish(sessionStorage.testItem);
window.close();
}
</script>
</head>
<body onload="finish();">
</body>
</html>
|