| 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 14 matching lines...) Expand all Loading... |
| 25 in a given directory tree. When you perform operations on files in those | 25 in a given directory tree. When you perform operations on files in those |
| 26 directories, the mount determines how those operations should be performed. | 26 directories, the mount determines how those operations should be performed. |
| 27 </p> | 27 </p> |
| 28 <p> | 28 <p> |
| 29 This example has three mounts by default. | 29 This example has three mounts by default. |
| 30 <ol> | 30 <ol> |
| 31 <li><i>/</i> the root of the filesystem. This is a memory mount, and | 31 <li><i>/</i> the root of the filesystem. This is a memory mount, and |
| 32 is non-persistent.</li> | 32 is non-persistent.</li> |
| 33 <li><i>/persistent</i> a persistent storage area. Any data written | 33 <li><i>/persistent</i> a persistent storage area. Any data written |
| 34 here can be read back after Chrome is restarted.</li> | 34 here can be read back after Chrome is restarted.</li> |
| 35 <li><i>/http</i> a mount that can read from a URL. Try reading from |
| 36 /http/index.html.</li> |
| 35 <li><i>/dev</i> a mount containing some utility files. /dev/null, | 37 <li><i>/dev</i> a mount containing some utility files. /dev/null, |
| 36 /dev/zero, etc.</li> | 38 /dev/zero, etc.</li> |
| 37 </ol> | 39 </ol> |
| 38 </p> | 40 </p> |
| 39 <div> | 41 <div> |
| 40 <span> | 42 <span> |
| 41 <input type="radio" id="radiofopen" name="group" checked="checked">fopen | 43 <input type="radio" id="radiofopen" name="group" checked="checked">fopen |
| 42 <input type="radio" id="radiofclose" name="group">fclose | 44 <input type="radio" id="radiofclose" name="group">fclose |
| 43 <input type="radio" id="radiofread" name="group">fread | 45 <input type="radio" id="radiofread" name="group">fread |
| 44 <input type="radio" id="radiofwrite" name="group">fwrite | 46 <input type="radio" id="radiofwrite" name="group">fwrite |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 </select> | 97 </select> |
| 96 <button id="fseekExecute">fseek</button> | 98 <button id="fseekExecute">fseek</button> |
| 97 </span> | 99 </span> |
| 98 </div> | 100 </div> |
| 99 <!-- 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". |
| 100 See common.js.--> | 102 See common.js.--> |
| 101 <div id="listener"></div> | 103 <div id="listener"></div> |
| 102 <div id="log"></div> | 104 <div id="log"></div> |
| 103 </body> | 105 </body> |
| 104 </html> | 106 </html> |
| OLD | NEW |