Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/test/data/sunspider/sunspider-results.html

Issue 56154: Move json2.js to a common location. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/data/sunspider/json2.js ('k') | chrome/test/data/v8_benchmark/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <!-- 4 <!--
5 Copyright (C) 2007 Apple Inc. All rights reserved. 5 Copyright (C) 2007 Apple Inc. All rights reserved.
6 6
7 Redistribution and use in source and binary forms, with or without 7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions 8 modification, are permitted provided that the following conditions
9 are met: 9 are met:
10 1. Redistributions of source code must retain the above copyright 10 1. Redistributions of source code must retain the above copyright
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 return output; 64 return output;
65 } 65 }
66 66
67 function print(str) { 67 function print(str) {
68 var console = document.getElementById("console"); 68 var console = document.getElementById("console");
69 console.appendChild(document.createTextNode(str)); 69 console.appendChild(document.createTextNode(str));
70 console.appendChild(document.createElement("br")); 70 console.appendChild(document.createElement("br"));
71 } 71 }
72 </script> 72 </script>
73 73
74 <script src="../json2.js"></script>
75 <script src="../../ui/sunspider_uitest.js"></script>
76
74 <script src="sunspider-test-prefix.js"></script> 77 <script src="sunspider-test-prefix.js"></script>
75 <script src="sunspider-analyze-results.js"></script> 78 <script src="sunspider-analyze-results.js"></script>
76 <script src="sunspider-compare-results.js"></script> 79 <script src="sunspider-compare-results.js"></script>
77 80
78 <script src="json2.js"></script>
79 <script src="../../ui/sunspider_uitest.js"></script>
80
81 <script> 81 <script>
82 // At this point the analysis is complete (see sunspider-analyze-results.js). 82 // At this point the analysis is complete (see sunspider-analyze-results.js).
83 automation.SetDone(); 83 automation.SetDone();
84 </script> 84 </script>
85 85
86 <script> 86 <script>
87 var output2 = output; 87 var output2 = output;
88 88
89 function compare(other) 89 function compare(other)
90 { 90 {
91 document.getElementById("console").innerHTML = ""; 91 document.getElementById("console").innerHTML = "";
92 var output1 = pivot(eval("(" + decodeURI(other.split("?")[1]) + ")")); 92 var output1 = pivot(eval("(" + decodeURI(other.split("?")[1]) + ")"));
93 sunspiderCompareResults(output1, output2); 93 sunspiderCompareResults(output1, output2);
94 } 94 }
95 </script> 95 </script>
96 96
97 97
98 </body> 98 </body>
99 </html> 99 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/sunspider/json2.js ('k') | chrome/test/data/v8_benchmark/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698