OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <!-- | 3 <!-- |
4 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2013 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 charset="UTF-8"> | 9 <meta charset="UTF-8"> |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 <section> | 28 <section> |
29 <div class="intro"> | 29 <div class="intro"> |
30 <p> | 30 <p> |
31 This demo provides a client-side interactive shell for the <a | 31 This demo provides a client-side interactive shell for the <a |
32 href="http://www.lua.org/" target="_blank">Lua</a> programming | 32 href="http://www.lua.org/" target="_blank">Lua</a> programming |
33 language. | 33 language. |
34 </p> | 34 </p> |
35 <p class="note"> | 35 <p class="note"> |
36 Note: the C++ source code of this demo is available in <a | 36 Note: the C++ source code of this demo is available in <a |
37 href="https://code.google.com/p/naclports/source/browse/trunk/src/exam
ples/tools/lua_ppapi/README.nacl" | 37 href="https://chromium.googlesource.com/webports/+/master/ports/lua/RE
ADME.nacl" |
38 target="_blank">naclports</a>. The terminal interface is | 38 target="_blank">webports</a>. The terminal interface is |
39 rendered in HTML/CSS using the | 39 rendered in HTML/CSS using the |
40 <a href="https://github.com/libapps-mirror/libapps" target="_blank">ht
erm</a> library. | 40 <a href="https://github.com/libapps-mirror/libapps" target="_blank">ht
erm</a> library. |
41 </p> | 41 </p> |
42 <div class="panel panel-info"> | 42 <div class="panel panel-info"> |
43 <h2>Run in Lua</h2> | 43 <h2>Run in Lua</h2> |
44 <div class="panel-body"> | 44 <div class="panel-body"> |
45 <button type="button" id="shell">Interactive Shell</button> | 45 <button type="button" id="shell">Interactive Shell</button> |
46 <button type="button" id="unittests">Lua Unit Tests</button> | 46 <button type="button" id="unittests">Lua Unit Tests</button> |
47 <button type="button" id="scimark">SciMark</button> | 47 <button type="button" id="scimark">SciMark</button> |
48 <button type="button" id="binarytrees">Binarytrees</button> | 48 <button type="button" id="binarytrees">Binarytrees</button> |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 <div id="progress" class="progress progress-striped active"> | 86 <div id="progress" class="progress progress-striped active"> |
87 <div id="progress-bar" class="progress-bar" role="progressbar" aria-v
aluenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%"> | 87 <div id="progress-bar" class="progress-bar" role="progressbar" aria-v
aluenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%"> |
88 </div> | 88 </div> |
89 </div> | 89 </div> |
90 </div> | 90 </div> |
91 </div> | 91 </div> |
92 </section> | 92 </section> |
93 | 93 |
94 </body> | 94 </body> |
95 </html> | 95 </html> |
OLD | NEW |