Upstream version 8.37.183.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / data / window.close.html
1 <html>
2 <head>
3 <title>window.close</title>
4 </head>
5 <body>
6 <script>
7     var testWindow;
8     testWindow = window.open("", "_parent", "width=200, height=100");
9     testWindow.document.write("testWindow");
10     setTimeout(function(){ testWindow.close(); }, 100);
11 </script>
12 </body>
13 </html>