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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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> |
OLD | NEW |