Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: fuzzer/res/imp/fuzzer-collapse-file-sk.html

Issue 1691893002: Fuzzer now deduplicates on the analysis side instead of the download side (Closed) Base URL: https://skia.googlesource.com/buildbot@metrics
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fuzzer/go/storage/download_reports.go ('k') | res/imp/9/details-summary.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 The fuzzer/res/fuzzer.js file must be included before this file. 2 The fuzzer/res/fuzzer.js file must be included before this file.
3 3
4 This in an HTML Import-able file that contains the definition 4 This in an HTML Import-able file that contains the definition
5 of the following elements: 5 of the following elements:
6 6
7 <fuzzer-collapse-file-sk> 7 <fuzzer-collapse-file-sk>
8 8
9 This element will poll /json/list 9 This element will poll /json/list
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 list-style-type: none; 63 list-style-type: none;
64 } 64 }
65 </style> 65 </style>
66 <details-sk id="file" open="{{expand}}"> 66 <details-sk id="file" open="{{expand}}">
67 <summary-sk> 67 <summary-sk>
68 <h3> 68 <h3>
69 <a href$="{{_getDetailsLink(category, file)}}">{{file.fileName}}</a> 69 <a href$="{{_getDetailsLink(category, file)}}">{{file.fileName}}</a>
70 -- {{file.count}} crash-causing fuzzes 70 -- {{file.count}} crash-causing fuzzes
71 </h3> 71 </h3>
72 </summary-sk> 72 </summary-sk>
73 <template is="dom-if" if="{{expand}}"> 73 <template is="dom-if" if="[[expand]]">
74 <template is="dom-repeat" items="{{file.byFunction}}" as="func" sort="_ byCount"> 74 <template is="dom-repeat" items="{{file.byFunction}}" as="func" sort="_ byCount">
75 <fuzzer-collapse-function-sk 75 <fuzzer-collapse-function-sk
76 class="func-group" 76 class="func-group"
77 func="{{func}}" 77 func="{{func}}"
78 details-base="{{_getDetailsLink(category, file)}}" 78 details-base="{{_getDetailsLink(category, file)}}"
79 ></fuzzer-collapse-function-sk> 79 ></fuzzer-collapse-function-sk>
80 </template> 80 </template>
81 </template> 81 </template>
82 <!-- -->
83 </details-sk> 82 </details-sk>
84 </template> 83 </template>
85 <script> 84 <script>
86 Polymer({ 85 Polymer({
87 is: 'fuzzer-collapse-file-sk', 86 is: 'fuzzer-collapse-file-sk',
88 87
89 properties: { 88 properties: {
90 file: { //expected to be provided 89 file: { //expected to be provided
91 type: Object, 90 type: Object,
92 value: function() { 91 value: function() {
(...skipping 27 matching lines...) Expand all
120 } 119 }
121 var base = fuzzer.getLinkToDetails("/category/"+category, "file", file.fil eName); 120 var base = fuzzer.getLinkToDetails("/category/"+category, "file", file.fil eName);
122 if (func) { 121 if (func) {
123 base = fuzzer.getLinkToDetails(base, "func", func.functionName); 122 base = fuzzer.getLinkToDetails(base, "func", func.functionName);
124 } 123 }
125 return base; 124 return base;
126 } 125 }
127 }); 126 });
128 </script> 127 </script>
129 </dom-module> 128 </dom-module>
OLDNEW
« no previous file with comments | « fuzzer/go/storage/download_reports.go ('k') | res/imp/9/details-summary.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698