-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser.html
More file actions
115 lines (103 loc) · 3.4 KB
/
browser.html
File metadata and controls
115 lines (103 loc) · 3.4 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="browser.css">
<script src="browser.js"></script>
</head>
<body>
<div id="controls">
<button id="back" title="Go Back">◀</button>
<button id="forward" title="Go Forward">▶</button>
<button id="home" title="Go Home">⌂</button>
<button id="reload" title="Reload">⟳</button>
<button id="terminate" title="Simulate Crash">☠</button>
<button id="clear-data" title="Clear Data">♻</button>
<form id="location-form">
<div id="center-column">
<input id="location" type="text" value="http://www.google.com/">
</div>
<input type="submit" value="Go">
</form>
<button id="zoom" title="Change Zoom">🔎</button>
<button id="find" title="Find in Page">🔦</button>
</div>
<div id="zoom-box">
<form id="zoom-form">
<input id="zoom-text" type="text">
<input type="submit" value="🔎">
<button id="zoom-in">➕</button>
<button id="zoom-out">➖</button>
</form>
</div>
<div id="find-box">
<form id="find-form">
<input id="find-text" type="text">
<div id="find-results"></div>
<input type="submit" style="position:absolute; visibility:hidden">
<button id="match-case">aA</button>
<button id="find-backward"><</button>
<button id="find-forward">></button>
</form>
</div>
<div id="clear-data-overlay" class="overlay"></div>
<div id="clear-data-confirm">
<h2>Clear browsing data</h2>
<p>
Select to clear the following items:
</p>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-appcache"></input>
<span>App cache</span>
</label>
</li>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-cookies"></input>
<span>Cookies</span>
</label>
</li>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-fs"></input>
<span>File system</span>
</label>
</li>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-indexedDB"></input>
<span>Indexed DB</span>
</label>
</li>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-localStorage"></input>
<span>Local storage</span>
</label>
</li>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-webSQL"></input>
<span>WebSQL</span>
</label>
</li>
<li id="clear-data-checkbox">
<label>
<input type="checkbox" id="clear-cache"></input>
<span>Cache</span>
</label>
</li>
<br>
<button id="clear-data-cancel">Cancel</button>
<button id="clear-data-ok">Clear browsing data</button>
</div>
<webview src="http://www.example.com/" style="width:640px; height:480px"></webview>
<div id="sad-webview">
<div id="sad-webview-icon">☢</div>
<h2 id="crashed-label">Aw, Snap!</h2>
<h2 id="killed-label">He's Dead, Jim!</h2>
<p>Something went wrong while displaying this webpage.
To continue, reload or go to another page.</p>
</div>
</body>
</html>