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

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

Issue 1695803002: Improve fuzz counts (Closed) Base URL: https://skia.googlesource.com/buildbot@dedup-first
Patch Set: Add docs 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/fuzzer-fe/main.go ('k') | fuzzer/res/imp/fuzzer-filter-sk.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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 expand="[[expand]]" ></fuzzer-collapse-function-sk>
80 </template> 80 </template>
81 </template> 81 </template>
82 </details-sk> 82 </details-sk>
83 </template> 83 </template>
84 <script> 84 <script>
85 Polymer({ 85 Polymer({
86 is: 'fuzzer-collapse-file-sk', 86 is: 'fuzzer-collapse-file-sk',
87 87
88 properties: { 88 properties: {
89 file: { //expected to be provided 89 file: { //expected to be provided
(...skipping 29 matching lines...) Expand all
119 } 119 }
120 var base = fuzzer.getLinkToDetails("/category/"+category, "file", file.fil eName); 120 var base = fuzzer.getLinkToDetails("/category/"+category, "file", file.fil eName);
121 if (func) { 121 if (func) {
122 base = fuzzer.getLinkToDetails(base, "func", func.functionName); 122 base = fuzzer.getLinkToDetails(base, "func", func.functionName);
123 } 123 }
124 return base; 124 return base;
125 } 125 }
126 }); 126 });
127 </script> 127 </script>
128 </dom-module> 128 </dom-module>
OLDNEW
« no previous file with comments | « fuzzer/go/fuzzer-fe/main.go ('k') | fuzzer/res/imp/fuzzer-filter-sk.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698