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

Side by Side Diff: fuzzer/res/imp/fuzzer-filter-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/res/imp/fuzzer-collapse-file-sk.html ('k') | fuzzer/res/imp/fuzzer-info-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 2
3 This in an HTML Import-able file that contains the definition 3 This in an HTML Import-able file that contains the definition
4 of the following elements: 4 of the following elements:
5 5
6 <fuzzer-filter-sk> 6 <fuzzer-filter-sk>
7 7
8 This element encapsulates the filtering mechanism for the fuzzer ui. 8 This element encapsulates the filtering mechanism for the fuzzer ui.
9 9
10 To use this file import it: 10 To use this file import it:
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 <select id="include" size="9" multiple> 50 <select id="include" size="9" multiple>
51 <!-- These are from result.go, arranged in order by estimated usefullness. --> 51 <!-- These are from result.go, arranged in order by estimated usefullness. -->
52 <option value="ASAN_global-buffer-overflow">ASAN_global-buffer-overflow< /option> 52 <option value="ASAN_global-buffer-overflow">ASAN_global-buffer-overflow< /option>
53 <option value="ASAN_heap-buffer-overflow">ASAN_heap-buffer-overflow</opt ion> 53 <option value="ASAN_heap-buffer-overflow">ASAN_heap-buffer-overflow</opt ion>
54 <option value="ASAN_stack-buffer-overflow">ASAN_stack-buffer-overflow</o ption> 54 <option value="ASAN_stack-buffer-overflow">ASAN_stack-buffer-overflow</o ption>
55 <option value="ASAN_heap-use-after-free">ASAN_heap-use-after-free</optio n> 55 <option value="ASAN_heap-use-after-free">ASAN_heap-use-after-free</optio n>
56 56
57 <option value="SKPICTURE_DuringRendering">SKPICTURE_DuringRendering</opt ion> 57 <option value="SKPICTURE_DuringRendering">SKPICTURE_DuringRendering</opt ion>
58 58
59 <option value="Other">Other</option> 59 <option value="Other">Other</option>
60 <option value="AssertionViolated">AssertionViolated</option> 60 <option value="SKAbortHit">SKAbortHit</option>
61 <option value="BadAlloc">BadAlloc</option> 61 <option value="BadAlloc">BadAlloc</option>
62 <option value="FailedGracefully">FailedGracefully</option> 62 <option value="FailedGracefully">FailedGracefully</option>
63 <option value="ClangCrashed">ClangCrashed</option> 63 <option value="ClangCrashed">ClangCrashed</option>
64 <option value="ASANCrashed">ASANCrashed</option> 64 <option value="ASANCrashed">ASANCrashed</option>
65 <option value="NoStackTrace">NoStackTrace</option> 65 <option value="NoStackTrace">NoStackTrace</option>
66 <option value="TimedOut">TimedOut</option> 66 <option value="TimedOut">TimedOut</option>
67 </select> 67 </select>
68 <select-status-sk id="includestatus" values="{{_include}}" clear></select- status-sk> 68 <select-status-sk id="includestatus" values="{{_include}}" clear></select- status-sk>
69 </div> 69 </div>
70 70
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 _sort: function(val) { 132 _sort: function(val) {
133 if (!val) { 133 if (!val) {
134 return []; 134 return [];
135 } 135 }
136 return val.sort(); 136 return val.sort();
137 }, 137 },
138 138
139 }); 139 });
140 </script> 140 </script>
141 </dom-module> 141 </dom-module>
OLDNEW
« no previous file with comments | « fuzzer/res/imp/fuzzer-collapse-file-sk.html ('k') | fuzzer/res/imp/fuzzer-info-sk.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698