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

Side by Side Diff: native_client_sdk/src/examples/geturl/index.html

Issue 10828187: [NaCl SDK] Support multiple configs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
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 22 matching lines...) Expand all
33 url = message_event.data.substring(0, eol_pos); 33 url = message_event.data.substring(0, eol_pos);
34 if (eol_pos < message_event.data.length - 1) { 34 if (eol_pos < message_event.data.length - 1) {
35 result = message_event.data.substring(eol_pos + 1); 35 result = message_event.data.substring(eol_pos + 1);
36 } 36 }
37 } 37 }
38 logElt.textContent += 'FULLY QUALIFIED URL: ' + url + '\n'; 38 logElt.textContent += 'FULLY QUALIFIED URL: ' + url + '\n';
39 logElt.textContent += 'RESULT:\n' + result + '\n'; 39 logElt.textContent += 'RESULT:\n' + result + '\n';
40 } 40 }
41 </script> 41 </script>
42 </head> 42 </head>
43 <body onload="common.onload('<NAME>', '<tc>')"> 43 <body onload="common.onload('<NAME>', '<tc>', '<config>')">
44 <h1><TITLE></h1> 44 <h1><TITLE></h1>
45 <h2>Status: <code id="statusField">NO-STATUS</code></h2> 45 <h2>Status: <code id="statusField">NO-STATUS</code></h2>
46 <table border=5 cellpadding=5% summary="A title and a result log"> 46 <table border=5 cellpadding=5% summary="A title and a result log">
47 <tr> 47 <tr>
48 <td valign=top><pre id='general_output' class='notrun'></pre></td> 48 <td valign=top><pre id='general_output' class='notrun'></pre></td>
49 </tr> 49 </tr>
50 </table> 50 </table>
51 <input id="button" type="button" value="Get URL" onclick="loadUrl()"> 51 <input id="button" type="button" value="Get URL" onclick="loadUrl()">
52 <!-- The NaCl plugin will be embedded inside the element with id "listener". 52 <!-- The NaCl plugin will be embedded inside the element with id "listener".
53 See common.js.--> 53 See common.js.-->
54 <div id="listener"></div> 54 <div id="listener"></div>
55 </body> 55 </body>
56 </html> 56 </html>
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/gamepad/index.html ('k') | native_client_sdk/src/examples/hello_world/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698