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"> |
11 <title><TITLE></title> | 11 <title><TITLE></title> |
12 <script type="text/javascript"> | 12 <script type="text/javascript"> |
13 // Provide the tumbler namespace | 13 // Provide the tumbler namespace |
14 tumbler = {}; | 14 tumbler = {}; |
15 </script> | 15 </script> |
16 <script type="text/javascript" src="common.js"></script> | 16 <script type="text/javascript" src="common.js"></script> |
17 <script type="text/javascript" src="check_browser.js"></script> | 17 <script type="text/javascript" src="check_browser.js"></script> |
18 <script type="text/javascript" src="bind.js"></script> | 18 <script type="text/javascript" src="bind.js"></script> |
19 <script type="text/javascript" src="dragger.js"></script> | 19 <script type="text/javascript" src="dragger.js"></script> |
20 <script type="text/javascript" src="tumbler.js"></script> | 20 <script type="text/javascript" src="tumbler.js"></script> |
21 <script type="text/javascript" src="vector3.js"></script> | 21 <script type="text/javascript" src="vector3.js"></script> |
22 <script type="text/javascript" src="trackball.js"></script> | 22 <script type="text/javascript" src="trackball.js"></script> |
23 <script type="text/javascript"> | 23 <script type="text/javascript"> |
24 function moduleDidLoad() { | 24 function moduleDidLoad() { |
25 tumbler.application = new tumbler.Application(); | 25 tumbler.application = new tumbler.Application(); |
26 tumbler.application.moduleDidLoad(); | 26 tumbler.application.moduleDidLoad(); |
27 } | 27 } |
28 </script> | 28 </script> |
29 </head> | 29 </head> |
30 <body onload="common.onload('<NAME>', '<tc>', 480, 480)"> | 30 <body onload="common.onload('<NAME>', '<tc>', '<config>', 480, 480)"> |
31 <h1><TITLE></h1> | 31 <h1><TITLE></h1> |
32 <h2>Status: <code id="statusField">NO-STATUS</code></h2> | 32 <h2>Status: <code id="statusField">NO-STATUS</code></h2> |
33 <p> | 33 <p> |
34 The Native Client module executed in this page draws a 3D cube | 34 The Native Client module executed in this page draws a 3D cube |
35 and allows you to rotate it using a virtual trackball method. To toggle | 35 and allows you to rotate it using a virtual trackball method. To toggle |
36 the view to/from fullscreen, press the Enter key. | 36 the view to/from fullscreen, press the Enter key. |
37 </p> | 37 </p> |
38 <!-- The NaCl plugin will be embedded inside the element with id "listener". | 38 <!-- The NaCl plugin will be embedded inside the element with id "listener". |
39 See common.js.--> | 39 See common.js.--> |
40 <div id="listener"></div> | 40 <div id="listener"></div> |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |