Bug 1160696 - Display MIRTypes in the JIT optimizations side pane as "Site : MIRType". (r=jsantell)

This commit is contained in:
Shu-yu Guo 2015-05-11 14:16:44 -07:00
Родитель efa9b671f2
Коммит 161f175ce2
2 изменённых файлов: 2 добавлений и 16 удалений

Просмотреть файл

@ -250,17 +250,8 @@ let JITOptimizationsView = {
_createIonNode: function (ionType) {
let node = document.createElement("span");
let icon = document.createElement("span");
let typeNode = document.createElement("span");
let siteNode = document.createElement("span");
typeNode.textContent = ionType.mirType;
typeNode.className = "opt-ion-type";
siteNode.textContent = `(${ionType.site})`;
siteNode.className = "opt-ion-type-site";
node.appendChild(typeNode);
node.appendChild(siteNode);
node.textContent = `${ionType.site} : ${ionType.mirType}`;
node.className = "opt-ion-type";
return node;
},

Просмотреть файл

@ -599,11 +599,6 @@
font-weight: 600;
}
#jit-optimizations-view .opt-ion-type-site {
-moz-margin-start: 4px !important;
opacity: 0.6;
}
#jit-optimizations-view .opt-outcome::before {
content: "→";
margin: 4px 0px;