Changeset 199677 in webkit
- Timestamp:
- Apr 18, 2016, 10:28:38 AM (9 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r199676 r199677 1 2016-04-18 Timothy Hatcher <timothy@apple.com> 2 3 Web Inspector: Database query result DataGrids have misaligned header columns 4 5 https://bugs.webkit.org/show_bug.cgi?id=156701 6 rdar://problem/25778310 7 8 Reviewed by Brian Burg. 9 10 * UserInterface/Views/DataGrid.js: 11 (WebInspector.DataGrid.prototype.autoSizeColumns): Set the width on the <col> element 12 for the body table to match the <col> in the header. 13 1 14 2016-04-18 Timothy Hatcher <timothy@apple.com> 2 15 -
trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js
r198645 r199677 428 428 } 429 429 430 for (var [identifier, column] of this.columns) 430 for (var [identifier, column] of this.columns) { 431 431 column["element"].style.width = widths[identifier] + "%"; 432 column["bodyElement"].style.width = widths[identifier] + "%"; 433 } 434 432 435 this._columnWidthsInitialized = false; 433 436 this.needsLayout();
Note:
See TracChangeset
for help on using the changeset viewer.