webdump_tests

Testfiles for webdump
git clone git://git.codemadness.org/webdump_tests
Log | Files | Refs | README

commit 25260c20c94c8518564e5ad67cf4fae3bd7f78f1
parent 531a79873f3a9b57c109a3d6ddd5346e22cbdf09
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri,  8 Sep 2023 10:29:57 +0200

add figure and figcaption to tests

Diffstat:
Atests/figure.html | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/tests/figure.html b/tests/figure.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html dir="ltr" lang="en"> +<body> + +<figure> + <img src="img/img" alt="alt text" /> + <figcaption> + Fig. 1: A caption of the figure + </figcaption> +</figure> + +</body> +</html> +