| Index: WebCore/inspector/front-end/StylesSidebarPane.js
|
| ===================================================================
|
| --- WebCore/inspector/front-end/StylesSidebarPane.js (revision 74021)
|
| +++ WebCore/inspector/front-end/StylesSidebarPane.js (working copy)
|
| @@ -1179,14 +1179,8 @@
|
|
|
| updateTitle: function()
|
| {
|
| - var priority = this.priority;
|
| var value = this.value;
|
|
|
| - if (priority && !priority.length)
|
| - delete priority;
|
| - if (priority)
|
| - priority = "!" + priority;
|
| -
|
| this.updateState();
|
|
|
| var enabledCheckboxElement;
|
| @@ -1339,12 +1333,6 @@
|
| valueElement.appendChild(processValue(/url\(([^)]+)\)/g, linkifyURL, colorProcessor, value));
|
| }
|
|
|
| - if (priority) {
|
| - var priorityElement = document.createElement("span");
|
| - priorityElement.className = "priority";
|
| - priorityElement.textContent = priority;
|
| - }
|
| -
|
| this.listItemElement.removeChildren();
|
|
|
| if (!this.treeOutline)
|
| @@ -1356,12 +1344,6 @@
|
| this.listItemElement.appendChild(nameElement);
|
| this.listItemElement.appendChild(document.createTextNode(": "));
|
| this.listItemElement.appendChild(valueElement);
|
| -
|
| - if (priorityElement) {
|
| - this.listItemElement.appendChild(document.createTextNode(" "));
|
| - this.listItemElement.appendChild(priorityElement);
|
| - }
|
| -
|
| this.listItemElement.appendChild(document.createTextNode(";"));
|
|
|
| if (!this.parsedOk)
|
|
|