forked from mirrors/gecko-dev
15 lines
180 B
HTML
15 lines
180 B
HTML
<html>
|
|
<head>
|
|
<title>A popup!</title>
|
|
</head>
|
|
<body>
|
|
<h1>hi!</h1>
|
|
<script>
|
|
|
|
SpecialPowers.wrap(document).userInteractionForTesting();
|
|
window.close();
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|