| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 <div class="function" id="fopen"> | 58 <div class="function" id="fopen"> |
| 59 <span> | 59 <span> |
| 60 Filename: | 60 Filename: |
| 61 <input type="text" id="fopenFilename"> | 61 <input type="text" id="fopenFilename"> |
| 62 <select id="fopenMode"> | 62 <select id="fopenMode"> |
| 63 <option value="r">Read Existing (r)</option> | 63 <option value="r">Read Existing (r)</option> |
| 64 <option value="r+">Read/Write Existing (r+)</option> | 64 <option value="r+">Read/Write Existing (r+)</option> |
| 65 <option value="w">Write New File (w)</option> | 65 <option value="w">Write New File (w)</option> |
| 66 <option value="w+">Read/Write New File (w+)</option> | 66 <option value="w+">Read/Write New File (w+)</option> |
| 67 <option value="a">Append Write (a)</option> | 67 <option value="a">Append Write (a)</option> |
| 68 <option value="w+">Append Read/Write (a+)</option> | 68 <option value="a+">Append Read/Write (a+)</option> |
| 69 </select> | 69 </select> |
| 70 <button>fopen</button> | 70 <button>fopen</button> |
| 71 </span> | 71 </span> |
| 72 </div> | 72 </div> |
| 73 <div class="function" id="fclose" hidden> | 73 <div class="function" id="fclose" hidden> |
| 74 <span> | 74 <span> |
| 75 <select class="file-handle" id="fcloseHandle"></select> | 75 <select class="file-handle" id="fcloseHandle"></select> |
| 76 <button>fclose</button> | 76 <button>fclose</button> |
| 77 </span> | 77 </span> |
| 78 </div> | 78 </div> |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 <input type="text" id="pipe_input_box"></p> | 253 <input type="text" id="pipe_input_box"></p> |
| 254 <p>Any output from the pipe will be printed below: <textarea id="pipe_output">
</textarea></p> | 254 <p>Any output from the pipe will be printed below: <textarea id="pipe_output">
</textarea></p> |
| 255 <hr> | 255 <hr> |
| 256 <p><b>Log:</b></p> | 256 <p><b>Log:</b></p> |
| 257 <pre id="log" style="font-weight: bold"></pre> | 257 <pre id="log" style="font-weight: bold"></pre> |
| 258 <!-- The NaCl plugin will be embedded inside the element with id "listener". | 258 <!-- The NaCl plugin will be embedded inside the element with id "listener". |
| 259 See common.js.--> | 259 See common.js.--> |
| 260 <div id="listener"></div> | 260 <div id="listener"></div> |
| 261 </body> | 261 </body> |
| 262 </html> | 262 </html> |
| OLD | NEW |