blob: fe6414a3c303a8d992f5cbb44e496b6269c7e987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html id="template_root">
<head>
<title jscontent="title"></title>
<script>
function sendCommand(cmd) {
window.domAutomationController.setAutomationId(1);
window.domAutomationController.send(cmd);
}
</script>
</head>
<body>
<h1 jscontent="headLine"></h1>
<div jscontent="description"></div>
<form a="">
<input type="button" jsvalues="value:proceed" onClick="sendCommand(1);"/>
<input type="button" jsvalues="value:leave" onClick="sendCommand(0);"/>
</form>
</body>
</html>
|