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

Side by Side Diff: tools/turbolizer/turbo-visualizer.css

Issue 2226293002: [turbolizer] Visualize also the dead nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@t-p2
Patch Set: Created 4 years, 4 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
« no previous file with comments | « tools/turbolizer/node.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .visible-transition { 1 .visible-transition {
2 transition-delay: 0s; 2 transition-delay: 0s;
3 transition-duration: 1s; 3 transition-duration: 1s;
4 transition-property: all; 4 transition-property: all;
5 transition-timing-function: ease; 5 transition-timing-function: ease;
6 } 6 }
7 7
8 .collapse-pane { 8 .collapse-pane {
9 background: #A0A0A0; 9 background: #A0A0A0;
10 bottom: 0; 10 bottom: 0;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 marker { 78 marker {
79 fill: #080808; 79 fill: #080808;
80 } 80 }
81 81
82 g rect { 82 g rect {
83 fill: #F0F0F0; 83 fill: #F0F0F0;
84 stroke: #080808; 84 stroke: #080808;
85 stroke-width: 2px; 85 stroke-width: 2px;
86 } 86 }
87 87
88 g.dead {
89 opacity: .5;
90 }
91
88 g.unsorted rect { 92 g.unsorted rect {
89 opacity: 0.5; 93 opacity: 0.5;
90 } 94 }
91 95
92 div.scrollable { 96 div.scrollable {
93 overflow-y: _croll; overflow-x: hidden; 97 overflow-y: _croll; overflow-x: hidden;
94 } 98 }
95 99
96 g.control rect { 100 g.control rect {
97 fill: #EFCC00; 101 fill: #EFCC00;
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 color: #888; 333 color: #888;
330 } 334 }
331 335
332 .prof-med { 336 .prof-med {
333 color: #080; 337 color: #080;
334 } 338 }
335 339
336 .prof-high { 340 .prof-high {
337 color: #800; 341 color: #800;
338 } 342 }
OLDNEW
« no previous file with comments | « tools/turbolizer/node.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698