OLD | NEW |
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 Loading... |
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 Loading... |
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> |
OLD | NEW |