| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 <input type="text" id="fseekOffset"> | 90 <input type="text" id="fseekOffset"> |
| 91 Whence: | 91 Whence: |
| 92 <select id="fseekWhence"> | 92 <select id="fseekWhence"> |
| 93 <option value="0">SEEK_SET</option> | 93 <option value="0">SEEK_SET</option> |
| 94 <option value="1">SEEK_CUR</option> | 94 <option value="1">SEEK_CUR</option> |
| 95 <option value="2">SEEK_END</option> | 95 <option value="2">SEEK_END</option> |
| 96 </select> | 96 </select> |
| 97 <button id="fseekExecute">fseek</button> | 97 <button id="fseekExecute">fseek</button> |
| 98 </span> | 98 </span> |
| 99 </div> | 99 </div> |
| 100 <pre id="log" style="font-weight: bold"></pre> |
| 100 <!-- The NaCl plugin will be embedded inside the element with id "listener". | 101 <!-- The NaCl plugin will be embedded inside the element with id "listener". |
| 101 See common.js.--> | 102 See common.js.--> |
| 102 <div id="listener"></div> | 103 <div id="listener"></div> |
| 103 <div id="log"></div> | |
| 104 </body> | 104 </body> |
| 105 </html> | 105 </html> |
| OLD | NEW |