OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <head> | |
3 | |
4 <meta charset=utf8> | |
5 | |
6 <!-- | |
7 Copyright (C) 2007 Apple Inc. All rights reserved. | |
8 | |
9 Redistribution and use in source and binary forms, with or without | |
10 modification, are permitted provided that the following conditions | |
11 are met: | |
12 1. Redistributions of source code must retain the above copyright | |
13 notice, this list of conditions and the following disclaimer. | |
14 2. Redistributions in binary form must reproduce the above copyright | |
15 notice, this list of conditions and the following disclaimer in the | |
16 documentation and/or other materials provided with the distribution. | |
17 | |
18 THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | |
19 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
21 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | |
22 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | |
23 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | |
24 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |
25 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
28 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
29 --> | |
30 | |
31 <title>SunSpider @NAME@</title> | |
32 <link rel="stylesheet" href="../kraken.css"> | |
33 </head> | |
34 | |
35 <body> | |
36 <h3>@NAME@</h3> | |
37 <div id="console"> | |
38 </div> | |
39 <script> | |
40 function record(time) { | |
41 document.getElementById("console").innerHTML = time + "ms"; | |
42 if (window.parent) { | |
43 parent.recordResult(time); | |
44 } | |
45 } | |
46 | |
47 @DATASCRIPT@ | |
48 | |
49 var _sunSpiderStartDate = new Date(); | |
50 | |
51 @SCRIPT@ | |
52 | |
53 var _sunSpiderInterval = new Date() - _sunSpiderStartDate; | |
54 | |
55 record(_sunSpiderInterval); | |
56 </script> | |
57 | |
58 | |
59 </body> | |
60 </html> | |
OLD | NEW |