|
- <!DOCTYPE html>
- <html lang="en">
-
- <head>
- <title>Test DBCC API</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <style>
- body {
- margin: 0;
- overflow: hidden;
- }
-
- table {
- border-spacing: 0.5em 0;
- }
-
- .popup_info {
- text-align: left;
- font-family: monospace;
- display: block;
- color: whitesmoke;
- }
-
- .bottom_info {
- position: absolute;
- top: 1em;
- left: 1em;
- }
-
- #file-dnd {
- border: 5px dashed red;
- width: 440px;
- height: 272px;
- }
- </style>
- </head>
-
- <body>
- <input id="file-selector" type="file" />
- <div id="file-dnd"></div>
- <ul id="output"></ul>
- <script src="../dbcc.js"></script>
- <script src="./test.js"></script>
- </body>
-
- </html>
|