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-img-element/document-adopt-base-url.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<meta charset="utf-8">
<title>Document base URL adopted img test</title>
<link rel="match" href="document-base-url-ref.html">
<base href="resources/" />
<iframe></iframe>
<script>
var iframe = document.querySelector('iframe');
var i = iframe.contentDocument.createElement('img');
i.src = "cat.jpg";
document.body.appendChild(i);
iframe.remove();
</script>