diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-04-17 07:24:50 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-18 16:30:02 +0200 |
commit | 229cc67feef244c6117171b09bb2d75edb3aac44 (patch) | |
tree | c31893c50ed39521d07e7766d489685c69da4bbc /Base | |
parent | 1ffd533ea27f43807d12a44605ea0a0de9436174 (diff) | |
download | serenity-229cc67feef244c6117171b09bb2d75edb3aac44.zip |
LibWeb: Implement HTMLMediaElement's autoplay attribute
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/misc/video-webm.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/res/html/misc/video-webm.html b/Base/res/html/misc/video-webm.html index 5ef64606d9..d48e9ee88e 100644 --- a/Base/res/html/misc/video-webm.html +++ b/Base/res/html/misc/video-webm.html @@ -77,7 +77,7 @@ <br /> - <video id=video controls src="file:///home/anon/Videos/test-webm.webm"></video> + <video id=video autoplay controls src="file:///home/anon/Videos/test-webm.webm"></video> <script type="text/javascript"> let video = document.getElementById('video'); |