Changeset 245713 in webkit
- Timestamp:
- May 23, 2019, 2:06:56 PM (7 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/Views/DebuggerSidebarPanel.js (modified) (1 diff)
-
UserInterface/Views/StyleDetailsPanel.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r245696 r245713 1 2019-05-23 Matt Baker <mattbaker@apple.com> 2 3 Web Inspector: Remove unused CSS class "offset-sections" 4 https://bugs.webkit.org/show_bug.cgi?id=198194 5 <rdar://problem/51080111> 6 7 Reviewed by Devin Rousso. 8 9 * UserInterface/Views/DebuggerSidebarPanel.js: 10 * UserInterface/Views/StyleDetailsPanel.js: 11 (WI.StyleDetailsPanel): 12 1 13 2019-05-23 Devin Rousso <drousso@apple.com> 2 14 -
trunk/Source/WebInspectorUI/UserInterface/Views/DebuggerSidebarPanel.js
r245665 r245713 125 125 this._navigationBar.addNavigationItem(this._debuggerStepOutButtonItem); 126 126 127 // Add this offset-sections class name so the sticky headers don't overlap the navigation bar.128 this.element.classList.add(WI.DebuggerSidebarPanel.OffsetSectionsStyleClassName);129 130 127 function showResourcesWithIssuesOnlyFilterFunction(treeElement) 131 128 { -
trunk/Source/WebInspectorUI/UserInterface/Views/StyleDetailsPanel.js
r236766 r245713 32 32 this._delegate = delegate || null; 33 33 34 // Add this offset-sections class name so the sticky headers don't overlap the navigation bar. 35 this.element.classList.add(className, "offset-sections"); 34 this.element.classList.add(className); 36 35 37 36 this._navigationInfo = {identifier, label};
Note:
See TracChangeset
for help on using the changeset viewer.