OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <!-- | 3 <!-- |
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 <head> | 8 <head> |
9 <meta http-equiv="Pragma" content="no-cache"> | 9 <meta http-equiv="Pragma" content="no-cache"> |
10 <meta http-equiv="Expires" content="-1"> | 10 <meta http-equiv="Expires" content="-1"> |
(...skipping 11 matching lines...) Expand all Loading... |
22 cols="40" | 22 cols="40" |
23 rows="10" | 23 rows="10" |
24 wrap="hard" | 24 wrap="hard" |
25 placeholder="Enter some text to save in a file..."></textarea> | 25 placeholder="Enter some text to save in a file..."></textarea> |
26 <br>File Name | 26 <br>File Name |
27 <input type="text" id="fileName" action="" value="/filename.txt"> | 27 <input type="text" id="fileName" action="" value="/filename.txt"> |
28 <button id="saveButton" action="">Save</button> | 28 <button id="saveButton" action="">Save</button> |
29 <button id="loadButton" action="">Load</button> | 29 <button id="loadButton" action="">Load</button> |
30 <button id="deleteButton" action="">Delete</button> | 30 <button id="deleteButton" action="">Delete</button> |
31 | 31 |
| 32 <br>Directory Name |
| 33 <input type="text" id="dirName" action="" value="/"> |
| 34 <button id="listButton" action="">List</button> |
| 35 |
32 <!-- The NaCl plugin will be embedded inside the element with id "listener". | 36 <!-- The NaCl plugin will be embedded inside the element with id "listener". |
33 See common.js.--> | 37 See common.js.--> |
34 <div id="listener"></div> | 38 <div id="listener"></div> |
35 </body> | 39 </body> |
36 </html> | 40 </html> |
OLD | NEW |