diff --git a/fuzzers/corpora/visualize/video_00.typ b/fuzzers/corpora/visualize/video_00.typ
index 9325d6a7..5df0aa1c 100644
--- a/fuzzers/corpora/visualize/video_00.typ
+++ b/fuzzers/corpora/visualize/video_00.typ
@@ -1,16 +1,66 @@
-#image.decode(```
-```.text, alt: "!typst-inlined-svg")
+/// HTML extension
+#let xhtml(outer-width: 1024pt, outer-height: 768pt, inner-width: none, inner-height: none, content) = {
+ let t = content.func()
+ let content = if content.func() == raw {
+ content.text
+ } else {
+ content
+ }
+
+ let inner-width = if inner-width == none {
+ outer-width
+ } else {
+ inner-width
+ }
+
+ let inner-height = if inner-height == none {
+ outer-height
+ } else {
+ inner-height
+ }
+
+ let html-embed = {
+ ""
+ }
+
+ image.decode(html-embed, alt: "!typst-inlined-svg")
+}
+
+#set page(height: auto, width: auto)
+
+= Multi-media in Typst
+
+This is a embed video.
+
+#box(xhtml(outer-width: 640pt, outer-height: 360pt, ```html
+
+```), width: auto, height: auto)
+
+That is a embed video.