Files
Oliver Dunk 5bf419b385 Reorganize directory structure (#825)
* Remove docs folder.

This was a redirect from a GitHub pages site that does not appear
to be in use.

* Rename api folder to api-samples.

* Move examples to functional-samples folder.

* Move cookbook sample to functional-samples.

* Move tutorials to functional-samples folder.

* Move mv2 and apps folders to _archive.

* Rename tools folder to .repo.

* Move reference folder to functional-samples.

* Update README.

Update README with new relative links for reorg.

* Update README.md

Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>

---------

Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
2023-02-03 10:58:04 -06:00

116 lines
3.4 KiB
HTML

<!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">&#9664;</button>
<button id="forward" title="Go Forward">&#9654;</button>
<button id="home" title="Go Home">&#8962;</button>
<button id="reload" title="Reload">&#10227;</button>
<button id="terminate" title="Simulate Crash">&#9760;</button>
<button id="clear-data" title="Clear Data">&#9851;</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">&#128270;</button>
<button id="find" title="Find in Page">&#128294;</button>
</div>
<div id="zoom-box">
<form id="zoom-form">
<input id="zoom-text" type="text">
<input type="submit" value="&#128270;">
<button id="zoom-in">&#10133;</button>
<button id="zoom-out">&#10134;</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">&#60;</button>
<button id="find-forward">&#62;</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.google.com/" style="width:640px; height:480px"></webview>
<div id="sad-webview">
<div id="sad-webview-icon">&#9762;</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>