summaryrefslogtreecommitdiff
path: root/test/smoke-tests/webview/first_page.html
blob: 33a6a8f5a08048931929226b30b23fa5f1ee6b41 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>

<head>
<title>First page</title>

<style>
p, form {
	width: 50%;
	padding: 1em;
	background: #FFFFFF;
}

body {
	background: #EEEEEE;
}
</style>
</head>

<body>

<h1>First page</h1>

<p>
<a href="endless://moveToPage?name=page2">Move to page 2</a>
</p>

<p>
<a href="endless://showMessageFromParameter?msg=This%20is%20a%20message%20from%20the%20URL%20parameter">Show message from parameter in this URL</a>
</p>

<form action="endless://showMessageFromParameter">
<input name="msg" value="I am in a form!"/>
<input type="submit" value="Show message using a form"/>
</form>

<p>
<input id="inputformessage" value="my ID is inputformessage"/>
<a href="endless://showMessageFromInputField?id=inputformessage">Show message using the &lt;input&gt;'s ID</a>
</p>

<p>
<a href="http://wikipedia.org">Regular link to a Web site</a>
</p>

<p>
<a href="endless://addStars?id=starspan">I want stars!</a> <span id="starspan" />
</p>

<p>
This is text that will be translated: <span name="translatable">Hello, world!</span>
</p>

</body>
</html>