OLD | NEW |
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source | 3 Copyright 2016 the V8 project authors. All rights reserved. Use of this source |
4 code is governed by a BSD-style license that can be found in the LICENSE file. | 4 code is governed by a BSD-style license that can be found in the LICENSE file. |
5 --> | 5 --> |
6 | 6 |
7 <head> | 7 <head> |
8 <meta charset="UTF-8"> | 8 <meta charset="UTF-8"> |
9 <style> | 9 <style> |
10 body { | 10 body { |
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1086 | 1086 |
1087 function handleAppendFile() { | 1087 function handleAppendFile() { |
1088 var files = document.getElementById("appendInput").files; | 1088 var files = document.getElementById("appendInput").files; |
1089 loadFiles(files, true); | 1089 loadFiles(files, true); |
1090 } | 1090 } |
1091 | 1091 |
1092 function handleLoadFile() { | 1092 function handleLoadFile() { |
1093 var files = document.getElementById("uploadInput").files; | 1093 var files = document.getElementById("uploadInput").files; |
1094 loadFiles(files, false) | 1094 loadFiles(files, false) |
1095 } | 1095 } |
1096 | 1096 |
1097 function loadFiles(files, append) { | 1097 function loadFiles(files, append) { |
1098 var file = files[0]; | 1098 var file = files[0]; |
1099 var reader = new FileReader(); | 1099 var reader = new FileReader(); |
1100 | 1100 |
1101 reader.onload = function(evt) { | 1101 reader.onload = function(evt) { |
1102 handleLoadText(this.result, append); | 1102 handleLoadText(this.result, append); |
1103 } | 1103 } |
1104 reader.readAsText(file); | 1104 reader.readAsText(file); |
1105 } | 1105 } |
1106 | 1106 |
(...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2062 </tr> | 2062 </tr> |
2063 <tr> | 2063 <tr> |
2064 <td>Overall Impact:</td> | 2064 <td>Overall Impact:</td> |
2065 <td class="timeImpact"></td><td>±</td><td class="timePercentImpact"></td
> | 2065 <td class="timeImpact"></td><td>±</td><td class="timePercentImpact"></td
> |
2066 <td class="compare timeImpact"></td><td class="compare"> ± </td><td clas
s="compare timePercentImpact"></td> | 2066 <td class="compare timeImpact"></td><td class="compare"> ± </td><td clas
s="compare timePercentImpact"></td> |
2067 </tr> | 2067 </tr> |
2068 </table> | 2068 </table> |
2069 </div> | 2069 </div> |
2070 </body> | 2070 </body> |
2071 </html> | 2071 </html> |
OLD | NEW |