UNPKG

slimerjs-firefox

Version:

This repo includes slimerjs as well as downloads a local copy of Firefox.

17 lines (16 loc) 412 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>window close</title> </head> <body>this page tries to close the window <script type="text/javascript"> function tryCloseWindow() { window.close(); return "OK"; } </script> <input type="button" onclick="tryCloseWindow()" value="click" id="btn"> </body> </html>