| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 <input type="text" id="recvBufferSize" value="256"> | 234 <input type="text" id="recvBufferSize" value="256"> |
| 235 <button>recv</button> | 235 <button>recv</button> |
| 236 </span> | 236 </span> |
| 237 </div> | 237 </div> |
| 238 <div class="function" id="close" hidden> | 238 <div class="function" id="close" hidden> |
| 239 <span> | 239 <span> |
| 240 <select class="sock-handle" id="closeHandle"></select> | 240 <select class="sock-handle" id="closeHandle"></select> |
| 241 <button>close</button> | 241 <button>close</button> |
| 242 </span> | 242 </span> |
| 243 </div> | 243 </div> |
| 244 | 244 <hr> |
| 245 <p><b>JavaScript Pipe Operations:</b></p> |
| 246 <p>Type input while the focus is on this box the send input to the pipe |
| 247 device: |
| 248 <select id="pipe_name"> |
| 249 <option>jspipe1</option> |
| 250 <option>jspipe2</option> |
| 251 <option>jspipe3</option> |
| 252 </select> |
| 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> |
| 245 <hr> | 255 <hr> |
| 246 <p><b>Log:</b></p> | 256 <p><b>Log:</b></p> |
| 247 <pre id="log" style="font-weight: bold"></pre> | 257 <pre id="log" style="font-weight: bold"></pre> |
| 248 <!-- 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". |
| 249 See common.js.--> | 259 See common.js.--> |
| 250 <div id="listener"></div> | 260 <div id="listener"></div> |
| 251 </body> | 261 </body> |
| 252 </html> | 262 </html> |
| OLD | NEW |