| 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 |
| 11 <title>Lua Interpreter</title> | 11 <title>Lua Interpreter</title> |
| 12 | 12 |
| 13 <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300
,700"> | 13 <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300
,700"> |
| 14 <link href="/static/styles/style.css" rel="stylesheet"> | 14 <link href="/static/css/out/site.css" rel="stylesheet"> |
| 15 | 15 |
| 16 <script type="text/javascript" src="//storage.googleapis.com/gonacl/demos/pu
blish/234230_dev/lua/hterm.concat.js"></script> | 16 <script type="text/javascript" src="//storage.googleapis.com/gonacl/demos/pu
blish/234230_dev/lua/hterm.concat.js"></script> |
| 17 <script type="text/javascript" src="naclterm.js"></script> | 17 <script type="text/javascript" src="naclterm.js"></script> |
| 18 <script type="text/javascript" src="lua.js"></script> | 18 <script type="text/javascript" src="lua.js"></script> |
| 19 | 19 |
| 20 </head> | 20 </head> |
| 21 | 21 |
| 22 <body class="demo"> | 22 <body class="demo"> |
| 23 | 23 |
| 24 <header> | 24 <header> |
| (...skipping 61 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 |