Files
2012-03-08 12:00:24 -05:00

50 lines
931 B
HTML

<!--
* PhoneGap is available under *either* the terms of the modified BSD license *or* the
* MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
*
* Copyright (c) 2011, IBM Corporation
*
-->
<html>
<head>
<title>PhoneGap BarcodeScanner device test app</title>
<script src="cordova-1.5.0.js"></script>
<script src="barcodescanner.js"></script>
<script src="image-data.json.js"></script>
<script src="phonegap-app.js"></script>
<style>
button {
font-size: 120%;
}
</style>
</head>
<body onload="onLoad()">
<div id="running-bits">
<button id="scan-button">scan: ?</button>
<p>(<span id="test-count-current">?</span>
/
<span id="test-count-total">?</span>)
<p><img id="image" src="">
<p>expected text:
<br><tt><span id="test-text">?</span></tt>
</div>
<p><b id="test-done"></b>
<br><button id="start-over">start over</button>
<p>Results:
<ul id="results-list">
</ul>
</body>
</html>