Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: native_client_sdk/src/examples/demo/nacl_io_demo/index.html

Issue 1995763004: [NaCl SDK] Fix typo in nacl_io_demo example (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698