| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
| 5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <style> | 9 <style> |
| 10 body { | 10 body { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 >Select Folder</a> ], | 54 >Select Folder</a> ], |
| 55 Default Path: <input id=default-path> | 55 Default Path: <input id=default-path> |
| 56 <a href='javascript:harness.changePath()'>Go</a> | 56 <a href='javascript:harness.changePath()'>Go</a> |
| 57 <div id=screen> | 57 <div id=screen> |
| 58 <iframe id=dialog></iframe> | 58 <iframe id=dialog></iframe> |
| 59 </div> | 59 </div> |
| 60 <div> | 60 <div> |
| 61 Add Files: | 61 Add Files: |
| 62 <input type='file' multiple onchange='harness.onFilesChange(event)'> | 62 <input type='file' multiple onchange='harness.onFilesChange(event)'> |
| 63 <button onclick='harness.onClearClick(event)'>Reset Filesystem</button> | 63 <button onclick='harness.onClearClick(event)'>Reset Filesystem</button> |
| 64 <button onclick='harness.onPopulateClick()'>Auto-populate</button> |
| 64 </div> | 65 </div> |
| 65 | 66 |
| 66 <script>harness.init()</script> | 67 <script>harness.init()</script> |
| 67 </body> | 68 </body> |
| 68 </html> | 69 </html> |
| OLD | NEW |