RESOLVED FIXED 64832
fix links on the flakiness dashboard
https://bugs.webkit.org/show_bug.cgi?id=64832
Summary fix links on the flakiness dashboard
Ojan Vafai
Reported 2011-07-19 15:38:16 PDT
fix links on the flakiness dashboard
Attachments
Patch (3.73 KB, patch)
2011-07-19 15:39 PDT, Ojan Vafai
tony: review+
Ojan Vafai
Comment 1 2011-07-19 15:39:07 PDT
Tony Chang
Comment 2 2011-07-19 16:32:53 PDT
Comment on attachment 101401 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=101401&action=review > Tools/TestResultServer/static-dashboards/flakiness_dashboard.html:-1329 > -function showPopupForTest(e, test) > -{ > - showPopup(e, htmlForIndividulTestOnAllBuilders(test)); > - appendExpectations(); > -} Are you just removing dead code here? > Tools/TestResultServer/static-dashboards/flakiness_dashboard.html:1756 > + // FIXME: Make this DOM creation less verbose. > + var index = document.createElement('div'); > + index.style.cssFloat = 'right'; > + index.textContent = (g_currentState.updateIndex + 1) + ' of ' + keys.length + ' tests'; > + document.body.appendChild(index); Maybe mention this refactoring in the ChangeLog?
Ojan Vafai
Comment 3 2011-07-21 15:11:58 PDT
(In reply to comment #2) > (From update of attachment 101401 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=101401&action=review > > > Tools/TestResultServer/static-dashboards/flakiness_dashboard.html:-1329 > > -function showPopupForTest(e, test) > > -{ > > - showPopup(e, htmlForIndividulTestOnAllBuilders(test)); > > - appendExpectations(); > > -} > > Are you just removing dead code here? yes > > Tools/TestResultServer/static-dashboards/flakiness_dashboard.html:1756 > > + // FIXME: Make this DOM creation less verbose. > > + var index = document.createElement('div'); > > + index.style.cssFloat = 'right'; > > + index.textContent = (g_currentState.updateIndex + 1) + ' of ' + keys.length + ' tests'; > > + document.body.appendChild(index); > > Maybe mention this refactoring in the ChangeLog? k
Ojan Vafai
Comment 4 2011-07-21 15:13:42 PDT
Note You need to log in before you can comment on or make changes to this bug.