Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / resources / open-window.html
1 <html>
2 <head>
3 <script>
4     var windowURL = '';
5     var openedWindow;
6     function openWindow()
7     {
8         openedWindow = window.open(windowURL);
9     }
10 </script>
11 </head>
12 <body>
13 <button onclick="openWindow()">Open Window</button>
14 </body>
15 </html>
16