Changeset 251670 in webkit
- Timestamp:
- Oct 28, 2019, 1:50:47 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
resultsdbpy/resultsdbpy/view/static/css/timeline.css (modified) (1 diff)
-
resultsdbpy/resultsdbpy/view/static/js/expectations.js (modified) (3 diffs)
-
resultsdbpy/resultsdbpy/view/static/js/timeline.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r251663 r251670 1 2019-10-28 Jonathan Bedard <jbedard@apple.com> 2 3 results.webkit.org: Show results which are missing expectations 4 https://bugs.webkit.org/show_bug.cgi?id=203494 5 <rdar://problem/56436643> 6 7 Reviewed by Aakash Jain. 8 9 * resultsdbpy/resultsdbpy/view/static/css/timeline.css: 10 (.dot.warning): Add warning dot with dark-orange color. 11 * resultsdbpy/resultsdbpy/view/static/js/expectations.js: 12 (Expectations.colorMap): Add warning. 13 (Expectations.failureTypes): Ditto. 14 (Expectations.failureTypeMap): Ditto. 15 (Expectations.symbolMap): Ditto. 16 * resultsdbpy/resultsdbpy/view/static/js/timeline.js: 17 (Legend): Add warning bubble. 18 1 19 2019-10-28 John Wilander <wilander@apple.com> 2 20 -
trunk/Tools/resultsdbpy/resultsdbpy/view/static/css/timeline.css
r249443 r251670 24 24 */ 25 25 26 .dot.warning { 27 background-color: var(--orangeDark); 28 } 29 26 30 .dot.timedout { 27 31 background-color: var(--orangeLight); -
trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/expectations.js
r250399 r251670 28 28 return { 29 29 success: computedStyle.getPropertyValue('--greenLight').trim(), 30 warning: computedStyle.getPropertyValue('--orangeDark').trim(), 30 31 failed: computedStyle.getPropertyValue('--redLight').trim(), 31 32 timedout: computedStyle.getPropertyValue('--orangeLight').trim(), … … 88 89 PASS: 0x40, 89 90 }; 90 Expectations.failureTypes = [' failed', 'timedout', 'crashed'];91 Expectations.failureTypes = ['warning', 'failed', 'timedout', 'crashed']; 91 92 Expectations.failureTypeMap = { 93 warning: 'WARNING', 92 94 failed: 'ERROR', 93 95 timedout: 'TIMEOUT', … … 101 103 Expectations.symbolMap = { 102 104 success: '✓', 105 warning: '?', 103 106 failed: '𝖷', 104 107 timedout: timeoutImage, -
trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/timeline.js
r251401 r251670 830 830 unexpected: plural ? 'All tests passed' : 'Test passed', 831 831 }, 832 warning: { 833 expected: plural ? 'Some tests unexpectedly reported warnings' : 'Unexpected warning', 834 unexpected: plural ? 'Some tests reported warnings' : 'Test warning', 835 }, 832 836 failed: { 833 837 expected: plural ? 'Some tests unexpectedly failed' : 'Unexpectedly failed',
Note:
See TracChangeset
for help on using the changeset viewer.