OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
3 | 3 |
4 <link rel="import" href="nav_bar.html"> | |
5 | |
6 <polymer-element name="heap-map"> | 4 <polymer-element name="heap-map"> |
7 <template> | 5 <template> |
8 <link rel="stylesheet" href="css/shared.css"> | 6 <link rel="stylesheet" href="css/shared.css"> |
9 <style> | 7 <style> |
10 .hover { | 8 .hover { |
11 position: fixed; | 9 position: fixed; |
12 z-index: 999; | 10 z-index: 999; |
13 height: 16px; | 11 height: 16px; |
14 width: 100%; | 12 width: 100%; |
15 background: #ffffff; | 13 background: #ffffff; |
(...skipping 22 matching lines...) Expand all Loading... |
38 <!-- Make sure no data is covered by hover bar initially --> | 36 <!-- Make sure no data is covered by hover bar initially --> |
39 </div> | 37 </div> |
40 <div class="flex-row"> | 38 <div class="flex-row"> |
41 <canvas id="fragmentation" width="1px" height="1px"></canvas> | 39 <canvas id="fragmentation" width="1px" height="1px"></canvas> |
42 </div> | 40 </div> |
43 <view-footer></view-footer> | 41 <view-footer></view-footer> |
44 </template> | 42 </template> |
45 </polymer-element> | 43 </polymer-element> |
46 | 44 |
47 <script type="application/dart" src="heap_map.dart"></script> | 45 <script type="application/dart" src="heap_map.dart"></script> |
OLD | NEW |