_content/security/fuzz: fix transparent image for dark theme

Fixes golang/go#54954

Change-Id: Ie2db42fe32e791111486cbbe8f3a392934f4a174
Reviewed-on: https://go-review.googlesource.com/c/website/+/454875
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
Valentin Deleplace 2022-12-02 19:52:17 +01:00 коммит произвёл Gopher Robot
Родитель 0258b1acda
Коммит 5f0cede926
2 изменённых файлов: 7 добавлений и 2 удалений

Двоичные данные
_content/security/fuzz/example-dark.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 74 KiB

Просмотреть файл

@ -22,11 +22,16 @@ valuable for finding security exploits and vulnerabilities.
Below is an example of a [fuzz test](#glos-fuzz-test), highlighting its main
components.
<img class="DarkMode-img" alt="Example code showing the overall fuzz test, with a fuzz target within
it. Before the fuzz target is a corpus addition with f.Add, and the parameters
of the fuzz target are highlighted as the fuzzing arguments."
src="/security/fuzz/example-dark.png" style="width: 600px; height:
auto;"/>
<img alt="Example code showing the overall fuzz test, with a fuzz target within
it. Before the fuzz target is a corpus addition with f.Add, and the parameters
of the fuzz target are highlighted as the fuzzing arguments."
src="/security/fuzz/example.png" style="display: block; width: 600px; height:
auto;"/>
src="/security/fuzz/example.png" style="width: 600px; height:
auto;" class="LightMode-img"/>
## Writing fuzz tests