summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/document-metadata/the-meta-element/pragma-directives/attr-meta-http-equiv-refresh/dynamic-append.html
blob: 4d2fa7894037361075b20097df491bac953bc958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<meta charset="utf-8">
<title>Meta refresh applies even when dynamically appended</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#pragma-directives">

<div id="log"></div>

<script>
"use strict";
setup({ single_test: true });

const iframe = document.createElement("iframe");
let loadCount = 0;

iframe.onload = () => {
  ++loadCount;
  const iDocument = iframe.contentDocument;

  if (loadCount === 1) {
    iDocument.body.innerHTML = `<meta http-equiv="refresh" content="1; url=foo">`;
  } else if (loadCount === 2) {
    assert_equals(iDocument.body.textContent.trim(), "foo");
    done();
  }
};

iframe.src = "support/ufoo";
document.body.appendChild(iframe);
</script>