14 lines
497 B
HTML
14 lines
497 B
HTML
<!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>
|