diff options
| author | Jeongjun Park <aha310510@gmail.com> | 2025-08-27 21:40:16 +0900 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-08-28 08:38:50 +0000 |
| commit | 1e8c3924f7d57db9cb37b9bd8c0e139b021bedf1 (patch) | |
| tree | 6106b370a86680bec7d8104fff3bb32520a64302 /pkg/manager/html/syscalls.html | |
| parent | 2f1f7b820d384ad68078f9bf36628cc167e8f7b8 (diff) | |
pkg/manager: add missing thead and tbody HTML tags
Diffstat (limited to 'pkg/manager/html/syscalls.html')
| -rw-r--r-- | pkg/manager/html/syscalls.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/manager/html/syscalls.html b/pkg/manager/html/syscalls.html index d16337978..f76ceb58d 100644 --- a/pkg/manager/html/syscalls.html +++ b/pkg/manager/html/syscalls.html @@ -5,6 +5,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <table class="list_table"> <caption>Per-syscall coverage:</caption> + <thead> <tr> <th><a onclick="return sortTable(this, 'Syscall', textSort)" href="#">Syscall</a></th> <th><a onclick="return sortTable(this, 'Inputs', numSort)" href="#" title="Number of inputs in the corpus added because of this syscall">Inputs</a></th> @@ -14,6 +15,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <th><a onclick="return sortTable(this, 'Comps overflows', numSort)" href="#" title="Number of times comparisons buffer has overflowed on this syscall">Comps overflows</a></th> <th>Prio</th> </tr> + </thead> + <tbody> {{range $c := $.Calls}} <tr> <td>{{$c.Name}}{{if $c.ID }} [{{$c.ID}}]{{end}}</td> @@ -25,4 +28,5 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the <td><a href='/prio?call={{$c.Name}}'>prio</a></td> </tr> {{end}} + </tbody> </table> |
