64d4c9f83e
This renames tests/integration to tests/end2end and moves some files to tests/end2end/fixtures.
23 lines
352 B
HTML
23 lines
352 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<button onclick="openWin()">Open "myWindow"</button>
|
|
<button onclick="closeWin()">Close "myWindow"</button>
|
|
|
|
<script>
|
|
var myWindow;
|
|
|
|
function openWin() {
|
|
myWindow = window.open("", "myWindow", "width=200, height=100");
|
|
}
|
|
|
|
function closeWin() {
|
|
myWindow.close();
|
|
myWindow.close();
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|