-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pointer.html
37 lines (31 loc) · 1.1 KB
/
pointer.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
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>three</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">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>WebdriverJS Testpage</h1>
<a href="pointer.html">3</a>
<a href="gestureTest.html">2</a>
<a href="index.html">1</a>
</header>
<div>
<div id="parent" onmouseover="mouselog(event)" onmouseout="mouselog(event)">parent
<div id="child">child</div>
</div>
<textarea id="text" style="height: 140px; width: 300px; display: block;"></textarea>
<input type="button" onclick="text.value=''" value="Clear">
<script src="scripts/script.js"></script>
</div>
<div class="code-tabs__result">
<iframe class="code-tabs__result" src="pointer.html" scrolling="no">
</iframe>
</div>
</body>
</html>