From ec86ca5c71fecf21590b872737fbadd9aa3e158b Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Fri, 18 Jun 2021 09:39:47 +0200 Subject: Add video element and related attributes (#84) Adds the `video` element and `loop`, `muted`, `playsinline`, `poster` attributes.--- html/elements_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'html/elements_test.go') diff --git a/html/elements_test.go b/html/elements_test.go index a85312c..e0cab4a 100644 --- a/html/elements_test.go +++ b/html/elements_test.go @@ -118,6 +118,7 @@ func TestSimpleElements(t *testing.T) { "u": U, "ul": Ul, "var": Var, + "video": Video, } for name, fn := range cases { -- cgit 1.4.1