Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/struct/scripted/use-external-reload-in-iframe.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title><use> with external resource in reloaded iframe</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe src="support/use-external-reload-in-iframe-child.html"></iframe>
<script>
async_test(t => {
window.onload = t.step_func(() => {
const iframe = document.querySelector('iframe');
iframe.onload = t.step_func_done();
iframe.contentWindow.location.reload();
});
});
</script>