wpt / svg / struct / scripted / use-external-reload-in-iframe.html

Status: FAIL | Duration: 49ms | Subtests: 0/1 | Open test on wpt.live | wpt.fyi

/svg/struct/scripted/use-external-reload-in-iframe.html

<!DOCTYPE html>
<title>&lt;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>