URI: 
       add some tests from examples - webdump_tests - Testfiles for webdump
  HTML git clone git://git.codemadness.org/webdump_tests
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit 9933721d021d58e732f42d01ce11fd3ed960f52a
   DIR parent 6aa89291b41026321f760a92f3604a0cff45cdd0
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Tue, 14 Jul 2026 15:11:53 +0200
       
       add some tests from examples
       
       Diffstat:
         M tests/audio.html                    |       6 ++++++
         M tests/object.html                   |       2 ++
         A tests/video_mozilla_example.html    |      20 ++++++++++++++++++++
       
       3 files changed, 28 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/tests/audio.html b/tests/audio.html
       @@ -1,3 +1,9 @@
        <audio src="file1.mp3"></audio>
        <audio src="file2.mp3" />
        <audio controls src="file3.mp3"></audio>
       +
       +<audio controls>
       +  <source src="horse.ogg" type="audio/ogg">
       +  <source src="horse.mp3" type="audio/mpeg">
       +  Your browser does not support the audio tag.
       +</audio> 
   DIR diff --git a/tests/object.html b/tests/object.html
       @@ -1,3 +1,5 @@
        <h1>The object element</h1>
        
        <object data="pic_trulli.jpg" width="300" height="200"></object>
       +
       +<object data="video.mp4" width="400" height="300"></object>
   DIR diff --git a/tests/video_mozilla_example.html b/tests/video_mozilla_example.html
       @@ -0,0 +1,20 @@
       +<video id="video" controls preload="metadata">
       +  <source src="/shared-assets/videos/sintel-short.mp4" type="video/mp4" />
       +  <source src="/shared-assets/videos/sintel-short.webm" type="video/webm" />
       +  <track
       +    label="English"
       +    kind="subtitles"
       +    srclang="en"
       +    src="/shared-assets/misc/sintel-en.vtt"
       +    default />
       +  <track
       +    label="Deutsch"
       +    kind="subtitles"
       +    srclang="de"
       +    src="/shared-assets/misc/sintel-de.vtt" />
       +  <track
       +    label="EspaƱol"
       +    kind="subtitles"
       +    srclang="es"
       +    src="/shared-assets/misc/sintel-es.vtt" />
       +</video>