-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
two.html
31 lines (27 loc) · 910 Bytes
/
two.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>two</title>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<h1>WebdriverJS Testpage</h1>
<a href="gestureTest.html">2</a>
<a href="index.html">1</a>
</header>
<div class="page">
Second page!
</div>
<iframe src="http://player.vimeo.com/video/63534746" frameborder="0" width="500" height="500" target="_top" name="vimeoframe"></iframe>
<button id="closeButton" >Close me</button>
<script>
document
.getElementById("closeButton")
.addEventListener("click", () => window.close())
</script>
</body>
</html>