Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-video-element/video-poster-clone-template.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8" />
<title>Video poster is shown when cloned from template with relative URL</title>
<link
rel="help"
/>
<link rel="match" href="video_dynamic_poster-ref.htm" />
<meta
name="assert"
content="The poster image is shown when cloned from a template with a relative URL."
/>
<body>
<script>
const template = document.createElement("template");
template.innerHTML = `<video src="/media/A4.mp4" poster="/media/poster.png" loop muted>`;
const video = template.content.firstChild.cloneNode(true);
document.body.appendChild(video);
</script>
</body>