Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / misc / resources / reentrant-beforeunload-helper.html
1 <html>
2 <body>
3 <script>
4 window.onbeforeunload = function() {
5   window.close();
6   return "This should only appear once.";
7 }
8 </script>
9 </body>
10 </html>