Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: chrome/common/extensions/docs/examples/api/document_scan/scan.html

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IDL indicates multiple images can be returned Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Scanner Control</title>
5 <link rel="stylesheet" type="text/css" href="scan.css">
6 </head>
7 <body>
8 <div id="waitAnimation" style="display: none;">
9 <div id="waitSpinner"></div>
10 </div>
11 </img>
12 <button id="requestButton">Request App permissions</button>
13 <button id="listScanners" style="display: none;">List Scanners</button>
14 <div id="scanOption" style="display: none;">
15 <button id="scanButton">Scan <span id="scannerName"></span></button>
16 <form action="#">
17 <input id="scanModeColor" type="radio" name="scanMode" value="color"
18 checked>Color
19 </input>
20 <input id="scanModeGrey" type="radio" name="scanMode" value="gray">
21 Gray
22 </input>
23 <input id="scanModeBW" type="radio" name="scanMode" value="lineart">
24 Black and White
25 </input>
26 </form>
27 </div>
28 <div id="scannedImages">
29 </div>
30 <script src="scan.js"></script>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698