OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- Copyright 2017 the V8 project authors. All rights reserved. | 2 <!-- Copyright 2017 the V8 project authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <html lang="en"> | 6 <html lang="en"> |
7 | 7 |
8 <head> | 8 <head> |
9 <meta charset="utf-8"/> | 9 <meta charset="utf-8"/> |
10 <title>V8 Tick Processor</title> | 10 <title>V8 Tick Processor</title> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 <tr id="timeline-legend"> | 57 <tr id="timeline-legend"> |
58 </tr> | 58 </tr> |
59 </table> | 59 </table> |
60 <div> | 60 <div> |
61 Current code object: <span id="timeline-currentCode"></span> | 61 Current code object: <span id="timeline-currentCode"></span> |
62 </div> | 62 </div> |
63 </div> | 63 </div> |
64 | 64 |
65 <br> | 65 <br> |
66 | 66 |
| 67 <div id="mode-bar" style="display : none"> |
| 68 </div> |
| 69 |
67 <div id="calltree" style="display : none"> | 70 <div id="calltree" style="display : none"> |
68 <div id="mode-bar"> | |
69 </div> | |
70 | |
71 <br> | 71 <br> |
72 Attribution: | 72 Attribution: |
73 <select id="calltree-attribution"> | 73 <select id="calltree-attribution"> |
74 </select> | 74 </select> |
75 Top-level tree buckets: | 75 Top-level tree buckets: |
76 <select id="calltree-categories"> | 76 <select id="calltree-categories"> |
77 </select> | 77 </select> |
78 Sort by: | 78 Sort by: |
79 <select id="calltree-sort"> | 79 <select id="calltree-sort"> |
80 </select> | 80 </select> |
(...skipping 10 matching lines...) Expand all Loading... |
91 <th>Function/category</th> | 91 <th>Function/category</th> |
92 <th class="numeric">Ticks</th> | 92 <th class="numeric">Ticks</th> |
93 <th id="calltree-table-own-ticks-header" class="numeric">Own ticks</th> | 93 <th id="calltree-table-own-ticks-header" class="numeric">Own ticks</th> |
94 </tr> | 94 </tr> |
95 </thead> | 95 </thead> |
96 <tbody> | 96 <tbody> |
97 </tbody> | 97 </tbody> |
98 </table> | 98 </table> |
99 </div> | 99 </div> |
100 | 100 |
| 101 <div id="summary" style="display : none"> |
| 102 </div> |
| 103 |
| 104 <div id="function-details" style="display : none"> |
| 105 </div> |
| 106 |
101 <p style="font-style:italic;"> | 107 <p style="font-style:italic;"> |
102 <br> | 108 <br> |
103 <br> | 109 <br> |
104 <br> | 110 <br> |
105 Copyright the V8 Authors - Last change to this page: 2017/02/15 | 111 Copyright the V8 Authors - Last change to this page: 2017/02/15 |
106 </p> | 112 </p> |
107 | 113 |
108 </body> | 114 </body> |
109 </html> | 115 </html> |
OLD | NEW |