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

Side by Side Diff: native_client_sdk/src/examples/debugging/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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 <div id="listener"> 131 <div id="listener">
132 <script type="text/javascript"> 132 <script type="text/javascript">
133 var listener = document.getElementById('listener') 133 var listener = document.getElementById('listener')
134 listener.addEventListener('load', moduleDidLoad, true); 134 listener.addEventListener('load', moduleDidLoad, true);
135 listener.addEventListener('message', handleMessage, true); 135 listener.addEventListener('message', handleMessage, true);
136 </script> 136 </script>
137 <embed name="nacl_module" 137 <embed name="nacl_module"
138 id="hello_world" 138 id="hello_world"
139 width=100 height=100 139 width=100 height=100
140 src="<tc>/debugging.nmf" 140 src="<tc>/<config>/debugging.nmf"
141 type="application/x-nacl" /> 141 type="application/x-nacl" />
142 </div> 142 </div>
143 <hr> 143 <hr>
144 <h2>Status: <code id="statusField">NO-STATUS</code></h2> 144 <h2>Status: <code id="statusField">NO-STATUS</code></h2>
145 <form name="Logging"> 145 <form name="Logging">
146 <h2>Log</h2> 146 <h2>Log</h2>
147 <textarea rows="10" cols="130" name="log" readonly="readonly"></textarea> 147 <textarea rows="10" cols="130" name="log" readonly="readonly"></textarea>
148 <br /> 148 <br />
149 <h2>Stack Trace</h2> 149 <h2>Stack Trace</h2>
150 <textarea rows="10" cols="130" name="trace" readonly="readonly"></textarea> 150 <textarea rows="10" cols="130" name="trace" readonly="readonly"></textarea>
151 </form> 151 </form>
152 </body> 152 </body>
153 </html> 153 </html>
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/common.js ('k') | native_client_sdk/src/examples/dlopen/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698